CodeNarc web console

subscribe to the feed Subscribe
to this
site
embed in your blog Embed
this
script
UnusedPrivateMethod false positive (via #meetcodenarc)
tweet this snippet Tweet
this
script

To embed this script in your site, just drop the content below where you want to embed it.

UnusedPrivateMethod false positive

Published 1 year ago by Marcin Erdmann
Actions  ➤ Edit in console Back to console Show/hide line numbers View recent scripts
import org.codenarc.report.* 

class A {
    private boolean isTest() {
        true
    }

    private boolean getTest2() {
        true
    }

    boolean thisMethodUsesTestAndTest2() {
        test && test2
    }
}

Recent scripts