Files
openide/java/java-impl/resources/intentionDescriptions/ExtractToMethodReferenceIntention/before.java.template
T
2025-02-05 04:43:28 +00:00

8 lines
147 B
Plaintext

class X {
{
JButton b = new JButton();
b.addActionListener(e -> {
<spot>System.out.println("clicked");</spot>
});
}
}