Format source code in a more natural Java way (#32)
This commit is contained in:
		@@ -5,10 +5,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
package com.mycompany.app;
 | 
					package com.mycompany.app;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public class App 
 | 
					public class App {
 | 
				
			||||||
{
 | 
					    public static void main(String[] args) {
 | 
				
			||||||
    public static void main( String[] args )
 | 
					 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        System.out.println("Hello Remote World!");
 | 
					        System.out.println("Hello Remote World!");
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,23 +1,21 @@
 | 
				
			|||||||
package com.mycompany.app;
 | 
					package com.mycompany.app;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import org.junit.Test;
 | 
					import org.junit.Test;
 | 
				
			||||||
import static org.junit.Assert.*;
 | 
					
 | 
				
			||||||
 | 
					import static org.junit.Assert.assertTrue;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
public class AppTest
 | 
					public class AppTest {
 | 
				
			||||||
{
 | 
					 | 
				
			||||||
    public AppTest() {
 | 
					    public AppTest() {
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @Test
 | 
					    @Test
 | 
				
			||||||
    public void testApp()
 | 
					    public void testApp() {
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        assertTrue(true);
 | 
					        assertTrue(true);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @Test
 | 
					    @Test
 | 
				
			||||||
    public void testMore()
 | 
					    public void testMore() {
 | 
				
			||||||
    {
 | 
					 | 
				
			||||||
        assertTrue(true);
 | 
					        assertTrue(true);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user