Files
openide/java/java-tests/testData/psi/formatter/java/SynchronizedBlock.java
T
Denis Zhdanov 4e370a6a7c IDEA-54000 Move java formatting tests to community edition
Moved from 'idea-tests' to 'java-tests' because java formatter belongs to community edition
2010-04-19 19:27:51 +04:00

9 lines
81 B
Java

class Foo{
public void foo(){
LOG.bar();
synchronized (this){
bar();
bar();
}
}
}