Skip to content

Commit

Permalink
LPS-72860 Reverts "LPS-70904 Treat blank parameter as null"
Browse files Browse the repository at this point in the history
This reverts commit 61c2428.
  • Loading branch information
shuyangzhou authored and brianchandotcom committed Jun 1, 2017
1 parent 62b0167 commit d1e4759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portal-impl/src/com/liferay/portlet/PortletURLImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ public void setParameter(String name, String value, boolean append) {
throw new IllegalArgumentException();
}

if ((value == null) || value.isEmpty()) {
if (value == null) {
removeParameter(name);

return;
Expand Down

0 comments on commit d1e4759

Please sign in to comment.