do you know , what is the problem here ?
# announcements
d
do you know , what is the problem here ?
t
It looks like you might just have an extra closing brace?
d
Where? i don't think so.
t
In terms of the other errors, no idea I'm afraid - I'm not sure what Result / Expression are coming from. Probably not useful, but it seems slightly surprising that you're assigning to class members
d
Can i be because of something i have to implement?
t
(Line 120 - right by the cursor. It has a red squiggle underlining it)
d
I've fixed that but, it still has the same errors
The last dependency. "net.objecthunter"ETC.... I think i needed that one. but i don't think it's working..
t
So on line 112, you're using the Expression class, which (I think) is defined in the net.objecthunter dependency. However, on line 112 what you've written is effectively an assignment to a member of the class. I think you want to be making an instance of this. The examples here are in Java, but maybe they'll help? I'm not at all familiar with this package, but it seems like there's an ExpressionBuilder class you can use to help build instances of Expression: https://www.programcreek.com/java-api-examples/?api=net.objecthunter.exp4j.Expression
1