From 6c4c33b3f2a6ee152df8786d492ff57eabbef24a Mon Sep 17 00:00:00 2001 From: Oliver Drotbohm Date: Fri, 21 Dec 2018 14:32:26 +0100 Subject: [PATCH] DATAREST-1324 - Polishing. Removed trailing whitespace from Javadoc comments. --- .../rest/core/mapping/ConfigurableHttpMethods.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/spring-data-rest-core/src/main/java/org/springframework/data/rest/core/mapping/ConfigurableHttpMethods.java b/spring-data-rest-core/src/main/java/org/springframework/data/rest/core/mapping/ConfigurableHttpMethods.java index 6a20b314a..8cb2a97a8 100644 --- a/spring-data-rest-core/src/main/java/org/springframework/data/rest/core/mapping/ConfigurableHttpMethods.java +++ b/spring-data-rest-core/src/main/java/org/springframework/data/rest/core/mapping/ConfigurableHttpMethods.java @@ -44,7 +44,7 @@ public class ConfigurableHttpMethods implements HttpMethods { /** * Creates a new {@link ConfigurableHttpMethods} of the given {@link HttpMethod}s. - * + * * @param methods must not be {@literal null}. * @return */ @@ -57,7 +57,7 @@ public class ConfigurableHttpMethods implements HttpMethods { /** * Creates a new {@link ConfigurableHttpMethods} of the given {@link HttpMethods}. - * + * * @param methods must not be {@literal null}. * @return */ @@ -74,7 +74,7 @@ public class ConfigurableHttpMethods implements HttpMethods { /** * Disables the given {@link HttpMethod}s. - * + * * @param methods must not be {@literal null}. * @return */ @@ -91,7 +91,7 @@ public class ConfigurableHttpMethods implements HttpMethods { /** * Enables the given {@link HttpMethod}s. - * + * * @param methods must not be {@literal null}. * @return */ @@ -108,7 +108,7 @@ public class ConfigurableHttpMethods implements HttpMethods { return ConfigurableHttpMethods.of(Stream.concat(this.methods.stream(), toAdd.stream()).collect(Collectors.toSet())); } - /* + /* * (non-Javadoc) * @see org.springframework.data.rest.core.mapping.HttpMethods#contains(org.springframework.http.HttpMethod) */ @@ -120,7 +120,7 @@ public class ConfigurableHttpMethods implements HttpMethods { return methods.contains(method); } - /* + /* * (non-Javadoc) * @see java.lang.Iterable#iterator() */