Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
Fix formatting mistake in library
Browse files Browse the repository at this point in the history
  • Loading branch information
JSAbrahams authored Jun 27, 2018
1 parent c2e6b93 commit 3588a24
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/demo/DemoLibrary.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package demo;

public class DemoLibrary { public String neverEmptyString() { return ""; }
public class DemoLibrary {
public String neverEmptyString() { return ""; }
public char alwaysBChar() { return 'b'; }
public int alwaysPositiveInt() { return 10; }
public double alwaysPositiveDouble() { return 100.0; }
Expand Down

0 comments on commit 3588a24

Please sign in to comment.