Qulice did not cached improper `)` positioning ``` new LtFake<>( entity -> { count.set(count.get() + 1); return Collections.emptyList(); }) ``` Here is fixed version: ``` new LtFake<>( entity -> { count.set(count.get() + 1); return Collections.emptyList(); } ) ``` Bug was found here: https://github.com/objectionary/lints/pull/393#discussion_r1986799375