Skip to content

Commit

Permalink
Remove unnecessary semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
sschuberth authored and emmanue1 committed Jul 7, 2015
1 parent 4765dc9 commit bd0e9a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/org/jd/gui/api/feature/SourcesSavable.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public interface SourcesSavable {

public interface Controller {
public boolean isCancelled();
};
}

public interface Listener {
public void pathSaved(Path path);
};
}
}
4 changes: 2 additions & 2 deletions api/src/main/java/org/jd/gui/spi/SourceSaver.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ public interface SourceSaver {

public interface Controller {
public boolean isCancelled();
};
}

public interface Listener {
public void pathSaved(Path path);
};
}
}

0 comments on commit bd0e9a5

Please sign in to comment.