summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/java/80060-synchronized.java
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/java/80060-synchronized.java')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/java/80060-synchronized.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/java/80060-synchronized.java b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/java/80060-synchronized.java
deleted file mode 100644
index b8b70a6b..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/java/80060-synchronized.java
+++ /dev/null
@@ -1,37 +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();
- }
- }
-}