Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iluwatar committed Sep 24, 2017
2 parents 7db7df3 + aa1f57a commit 6848dd0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* <p>
* It is responsible for reading and loading the contents of a given file.
*/
public class FileLoader implements Serializable{
public class FileLoader implements Serializable {

/**
* Generated serial version UID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* <p>
* It is responsible for reacting to the user's actions and update the View component.
*/
public class FileSelectorPresenter implements Serializable{
public class FileSelectorPresenter implements Serializable {

/**
* Generated serial version UID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* This interface represents the View component in the Model-View-Presenter pattern. It can be
* implemented by either the GUI components, or by the Stub.
*/
public interface FileSelectorView extends Serializable{
public interface FileSelectorView extends Serializable {

/**
* Opens the view.
Expand Down
2 changes: 1 addition & 1 deletion mutex/src/test/java/com/iluwatar/mutex/AppTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* Application Test Entrypoint
*/
public class AppTest{
public class AppTest {
@Test
public void test() throws IOException {
String[] args = {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/**
* Application Test Entrypoint
*/
public class AppTest{
public class AppTest {
@Test
public void test() throws IOException {
String[] args = {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @author drastogi
*
*/
public class ThrottleTimerImpl implements Throttler{
public class ThrottleTimerImpl implements Throttler {

private int throttlePeriod;

Expand Down

0 comments on commit 6848dd0

Please sign in to comment.