Skip to content

Commit 462eca4

Browse files
committed
release new version
1 parent 9531f72 commit 462eca4

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

app/src/main/java/com/duy/pascal/interperter/ast/expressioncontext/HierarchicalExpressionContext.java

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,10 @@ public void put(Class<?> clazz, DiagnosticCollector object) {
110110

111111
@Nullable
112112
public <T> T getListener(Class<T> c) {
113-
// try {
114-
// return (T) parsingListener.get(c);
115-
// } catch (Exception e) {
116-
// return null;
117-
// }
118-
return null;
113+
try {
114+
return (T) parsingListener.get(c);
115+
} catch (Exception e) {
116+
return null;
117+
}
119118
}
120119
}

0 commit comments

Comments
 (0)