Skip to content

Commit 8c0348f

Browse files
committed
DATAREST-1324 - Polishing.
Removed trailing whitespace from Javadoc comments.
1 parent 7900ca8 commit 8c0348f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spring-data-rest-core/src/main/java/org/springframework/data/rest/core/mapping/ConfigurableHttpMethods.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class ConfigurableHttpMethods implements HttpMethods {
4444

4545
/**
4646
* Creates a new {@link ConfigurableHttpMethods} of the given {@link HttpMethod}s.
47-
*
47+
*
4848
* @param methods must not be {@literal null}.
4949
* @return
5050
*/
@@ -57,7 +57,7 @@ static ConfigurableHttpMethods of(HttpMethod... methods) {
5757

5858
/**
5959
* Creates a new {@link ConfigurableHttpMethods} of the given {@link HttpMethods}.
60-
*
60+
*
6161
* @param methods must not be {@literal null}.
6262
* @return
6363
*/
@@ -74,7 +74,7 @@ static ConfigurableHttpMethods of(HttpMethods methods) {
7474

7575
/**
7676
* Disables the given {@link HttpMethod}s.
77-
*
77+
*
7878
* @param methods must not be {@literal null}.
7979
* @return
8080
*/
@@ -91,7 +91,7 @@ public ConfigurableHttpMethods disable(HttpMethod... methods) {
9191

9292
/**
9393
* Enables the given {@link HttpMethod}s.
94-
*
94+
*
9595
* @param methods must not be {@literal null}.
9696
* @return
9797
*/
@@ -108,7 +108,7 @@ public ConfigurableHttpMethods enable(HttpMethod... methods) {
108108
return ConfigurableHttpMethods.of(Stream.concat(this.methods.stream(), toAdd.stream()).collect(Collectors.toSet()));
109109
}
110110

111-
/*
111+
/*
112112
* (non-Javadoc)
113113
* @see org.springframework.data.rest.core.mapping.HttpMethods#contains(org.springframework.http.HttpMethod)
114114
*/
@@ -120,7 +120,7 @@ public boolean contains(HttpMethod method) {
120120
return methods.contains(method);
121121
}
122122

123-
/*
123+
/*
124124
* (non-Javadoc)
125125
* @see java.lang.Iterable#iterator()
126126
*/

0 commit comments

Comments
 (0)