The code is
assert enabled = true;
I assume assert usually used with a boolean statement
if you put 'assert something == something '..... then it is a boolean statement....
if you put 'assert something == something : "Display Error" '..... then it is a boolean statement with assertion error/exception....
but "enabled = true" is an assignment statement...... will it affect?
I tried to put that code in a simple java program and used "java -ea MyProgram" .... I am only getting false for ASSERTIONS
Am I interpreting the code wrongly ..... may be