Skip to content

Commit fd15924

Browse files
committed
polishing
1 parent 2516bc0 commit fd15924

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

org.springframework.web.portlet/src/main/java/org/springframework/web/portlet/bind/PortletRequestParameterPropertyValues.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
2-
* Copyright 2002-2005 the original author or authors.
3-
*
2+
* Copyright 2002-2010 the original author or authors.
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -75,7 +75,7 @@ public PortletRequestParameterPropertyValues(PortletRequest request, String pref
7575
*/
7676
public PortletRequestParameterPropertyValues(PortletRequest request, String prefix, String prefixSeparator) {
7777
super(PortletUtils.getParametersStartingWith(
78-
request, (prefix != null) ? prefix + prefixSeparator : null));
78+
request, (prefix != null ? prefix + prefixSeparator : null)));
7979
}
8080

8181
}

org.springframework.web/src/main/java/org/springframework/web/bind/ServletRequestParameterPropertyValues.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
2-
* Copyright 2002-2005 the original author or authors.
3-
*
2+
* Copyright 2002-2010 the original author or authors.
3+
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -74,7 +74,7 @@ public ServletRequestParameterPropertyValues(ServletRequest request, String pref
7474
*/
7575
public ServletRequestParameterPropertyValues(ServletRequest request, String prefix, String prefixSeparator) {
7676
super(WebUtils.getParametersStartingWith(
77-
request, (prefix != null) ? prefix + prefixSeparator : null));
77+
request, (prefix != null ? prefix + prefixSeparator : null)));
7878
}
7979

8080
}

0 commit comments

Comments
 (0)