This is clear if you delete the comment:
return foo.containsKey(MARKET_DATA) && !foo.get(MARKET_DATA).isMissing();;
Note that there are two semicolons at the end: empty statements are allowed in Java, but this particular empty statement is unreachable since the previous statement is always returns.
(For the avoidance of doubt, a comment should not end with a symbol ;).
source
share