This commit is contained in:
Ilkka Seppälä 2017-09-24 19:36:27 +03:00
commit 6848dd020e
6 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@ import org.slf4j.LoggerFactory;
* <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

View File

@ -30,7 +30,7 @@ import java.io.Serializable;
* <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

View File

@ -28,7 +28,7 @@ import java.io.Serializable;
* 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.

View File

@ -28,7 +28,7 @@ import java.io.IOException;
/**
* Application Test Entrypoint
*/
public class AppTest{
public class AppTest {
@Test
public void test() throws IOException {
String[] args = {};

View File

@ -28,7 +28,7 @@ import java.io.IOException;
/**
* Application Test Entrypoint
*/
public class AppTest{
public class AppTest {
@Test
public void test() throws IOException {
String[] args = {};

View File

@ -35,7 +35,7 @@ import com.iluwatar.throttling.CallsCount;
* @author drastogi
*
*/
public class ThrottleTimerImpl implements Throttler{
public class ThrottleTimerImpl implements Throttler {
private int throttlePeriod;