do not need parenthesis for associative operations (IDEADEV-41569); move to java...
[fedora-idea.git] / java / java-tests / testData / refactoring / introduceVariable / AnonymousClass1.after.java
blob4270d7d2388beaaa2f9b432a7c19930748aa99cd
1 class A {
2 static {
3 Runnable runnable = new Runnable() {
4 public void run() {
6 };
7 System.out.println(runnable);