Skip to content

Commit

Permalink
Fixes Checkstyle problems
Browse files Browse the repository at this point in the history
There are few checkstyles problems found in the  which are required to be fixed
  • Loading branch information
Dos Debug committed Sep 21, 2017
1 parent eb36033 commit d8ac005
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 d8ac005

Please sign in to comment.