lizard icon indicating copy to clipboard operation
lizard copied to clipboard

Variable declaration with anonymous class initiation detected as method in Java.

Open cg122 opened this issue 4 years ago • 0 comments

ThreadLocal<Long> returned as function name that is problematic.

    private ThreadLocal<Long> startTime = new ThreadLocal<Long>() {
            @Override protected Long initialValue() {
                return 0L;
            }
    };

cg122 avatar Feb 08 '21 18:02 cg122