Skip to content

Commit

Permalink
Apply Google Java Style Format
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin9922 authored and github-actions[bot] committed Jul 21, 2024
1 parent 9b52b81 commit a19494b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 20 deletions.
13 changes: 4 additions & 9 deletions gcs-back-end/src/main/java/com/cmipt/App.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
package com.cmipt;

/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
/** Hello world! */
public class App {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}
16 changes: 5 additions & 11 deletions gcs-back-end/src/test/java/com/cmipt/AppTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,11 @@

import org.junit.Test;

/**
* Unit test for simple App.
*/
public class AppTest
{
/**
* Rigorous Test :-)
*/
/** Unit test for simple App. */
public class AppTest {
/** Rigorous Test :-) */
@Test
public void shouldAnswerWithTrue()
{
assertTrue( true );
public void shouldAnswerWithTrue() {
assertTrue(true);
}
}

0 comments on commit a19494b

Please sign in to comment.