Remove trailing whitespace from Java source code

This commit is contained in:
Sam Brannen
2015-05-06 20:08:42 +02:00
parent edc66d76af
commit 7a690df925
12 changed files with 27 additions and 27 deletions

View File

@@ -104,9 +104,9 @@ public class StompHeaders implements MultiValueMap<String, String>, Serializable
* Create a new instance to be populated with new header values.
*/
public StompHeaders() {
this(new LinkedMultiValueMap<String, String>(4), false);
this(new LinkedMultiValueMap<String, String>(4), false);
}
private StompHeaders(Map<String, List<String>> headers, boolean readOnly) {
Assert.notNull(headers, "'headers' must not be null");
if (readOnly) {