FIX:: checkstyle fixes

This commit is contained in:
mlwauben
2019-03-26 10:55:12 +01:00
committed by Merel Steenbergen
parent 8ec3a508eb
commit 0bf32dc19c
15 changed files with 96 additions and 77 deletions

View File

@@ -2,7 +2,7 @@ package greenify.common;
public class ApplicationException extends RuntimeException {
/**
* This method returns an application exception message.
* This method sends an application exception message.
* @param message the exception message
*/
public ApplicationException(String message) {

View File

@@ -17,7 +17,7 @@ public class ErrorResponse {
public ErrorResponse() { }
/**
* This method returns the message.
* This method gets the message.
* @return the message
*/
public String getMessage() {

View File

@@ -6,6 +6,7 @@
resorting to remote interfaces (e.g., web services),
where each call is an expensive operation.
*/
package greenify.common;
public class UserDto {

View File

@@ -1,4 +1,5 @@
import static org.junit.Assert.assertEquals;
import greenify.common.ErrorResponse;
import org.junit.Test;

View File

@@ -1,4 +1,5 @@
import static org.junit.Assert.assertEquals;
import greenify.common.UserDto;
import org.junit.Test;