diff options
Diffstat (limited to 'testData/src/pkg/TestClassVar.java')
-rw-r--r-- | testData/src/pkg/TestClassVar.java | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/testData/src/pkg/TestClassVar.java b/testData/src/pkg/TestClassVar.java index 9f8fcac..09dcded 100644 --- a/testData/src/pkg/TestClassVar.java +++ b/testData/src/pkg/TestClassVar.java @@ -18,42 +18,42 @@ package pkg; public class TestClassVar { - private boolean field_boolean = (Math.random() > 0); - public int field_int = 0; - - public void testFieldSSAU() { - - for(int i = 0; i < 10; i++) { - - try { - System.out.println(); - } finally { - if (field_boolean) { - System.out.println(); - } - } - + private boolean field_boolean = (Math.random() > 0); + public int field_int = 0; + + public void testFieldSSAU() { + + for (int i = 0; i < 10; i++) { + + try { + System.out.println(); + } + finally { + if (field_boolean) { + System.out.println(); } - } - - public Long testFieldSSAU1() { // IDEA-127466 - return new Long(field_int++); - } - - public void testComplexPropagation() { - - int a = 0; - - while (a < 10) { - - int b = a; - - for(; a < 10 && a == 0; a++) {} - - if (b != a) { - System.out.println(); - } - } - } - + } + } + } + + public Long testFieldSSAU1() { // IDEA-127466 + return new Long(field_int++); + } + + public void testComplexPropagation() { + + int a = 0; + + while (a < 10) { + + int b = a; + + for (; a < 10 && a == 0; a++) { + } + + if (b != a) { + System.out.println(); + } + } + } } |