diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80061-synchronized.java')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80061-synchronized.java | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80061-synchronized.java b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80061-synchronized.java deleted file mode 100644 index 73fc9b1d..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/java/80061-synchronized.java +++ /dev/null @@ -1,29 +0,0 @@ -public class A { - private synchronized static void g(){ - int x=1; - } - synchronized A f(){ - return null; - } - public void foo(){ - g(); synchronized(this) - { - g(); - } - g(); synchronized(this) - { - synchronized(this) - { - synchronized(this) - { - g(); - } - } - g(); - } - synchronized(this) - { - g(); - } - } -} |