From 516d1522b9ff2dc330a0fd0d26c5491590c503f6 Mon Sep 17 00:00:00 2001 From: Manu Sridharan Date: Mon, 29 Apr 2013 20:33:18 -0700 Subject: [PATCH] indentation --- .../src/Scoping2.java | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/com.ibm.wala.cast.java.test.data/src/Scoping2.java b/com.ibm.wala.cast.java.test.data/src/Scoping2.java index 3084fa492..7e21ccdec 100644 --- a/com.ibm.wala.cast.java.test.data/src/Scoping2.java +++ b/com.ibm.wala.cast.java.test.data/src/Scoping2.java @@ -9,20 +9,20 @@ * IBM Corporation - initial API and implementation *****************************************************************************/ public class Scoping2 { - public static void main(String[] args) { - Scoping2 s2= new Scoping2(); - { - final int x= 5; - System.out.println(x); - (new Object() { - public void foo() { - System.out.println("x = " + x); - } - }).foo(); - } - { - double x= 3.14; - System.out.println(x); - } + public static void main(String[] args) { + Scoping2 s2 = new Scoping2(); + { + final int x = 5; + System.out.println(x); + (new Object() { + public void foo() { + System.out.println("x = " + x); + } + }).foo(); } + { + double x = 3.14; + System.out.println(x); + } + } } \ No newline at end of file