indentation

This commit is contained in:
Manu Sridharan 2013-04-29 20:33:18 -07:00
parent 80c031d48b
commit 516d1522b9
1 changed files with 15 additions and 15 deletions

View File

@ -10,9 +10,9 @@
*****************************************************************************/
public class Scoping2 {
public static void main(String[] args) {
Scoping2 s2= new Scoping2();
Scoping2 s2 = new Scoping2();
{
final int x= 5;
final int x = 5;
System.out.println(x);
(new Object() {
public void foo() {
@ -21,7 +21,7 @@ public class Scoping2 {
}).foo();
}
{
double x= 3.14;
double x = 3.14;
System.out.println(x);
}
}