Skip to content

Commit 6848dd0

Browse files
committed
2 parents 7db7df3 + aa1f57a commit 6848dd0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

model-view-presenter/src/main/java/com/iluwatar/model/view/presenter/FileLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
* <p>
3737
* It is responsible for reading and loading the contents of a given file.
3838
*/
39-
public class FileLoader implements Serializable{
39+
public class FileLoader implements Serializable {
4040

4141
/**
4242
* Generated serial version UID

model-view-presenter/src/main/java/com/iluwatar/model/view/presenter/FileSelectorPresenter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* <p>
3131
* It is responsible for reacting to the user's actions and update the View component.
3232
*/
33-
public class FileSelectorPresenter implements Serializable{
33+
public class FileSelectorPresenter implements Serializable {
3434

3535
/**
3636
* Generated serial version UID

model-view-presenter/src/main/java/com/iluwatar/model/view/presenter/FileSelectorView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* This interface represents the View component in the Model-View-Presenter pattern. It can be
2929
* implemented by either the GUI components, or by the Stub.
3030
*/
31-
public interface FileSelectorView extends Serializable{
31+
public interface FileSelectorView extends Serializable {
3232

3333
/**
3434
* Opens the view.

mutex/src/test/java/com/iluwatar/mutex/AppTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Application Test Entrypoint
3030
*/
31-
public class AppTest{
31+
public class AppTest {
3232
@Test
3333
public void test() throws IOException {
3434
String[] args = {};

semaphore/src/test/java/com/iluwatar/semaphore/AppTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Application Test Entrypoint
3030
*/
31-
public class AppTest{
31+
public class AppTest {
3232
@Test
3333
public void test() throws IOException {
3434
String[] args = {};

throttling/src/main/java/com/iluwatar/throttling/timer/ThrottleTimerImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @author drastogi
3636
*
3737
*/
38-
public class ThrottleTimerImpl implements Throttler{
38+
public class ThrottleTimerImpl implements Throttler {
3939

4040
private int throttlePeriod;
4141

0 commit comments

Comments
 (0)