[GH-11032] Bug - Allow query parameters than contain spaces for Java client. (#11160)

The java client doesn't allow query parameters that have a value of just "%20"
or "%0A". Those can now be values with this commit.
This commit is contained in:
Alan Morgan
2022-01-02 02:23:39 -07:00
committed by GitHub
parent 8d532d5a38
commit 9f4f2fde47

View File

@@ -41,10 +41,6 @@ public class Pair {
return false;
}
if (arg.trim().isEmpty()) {
return false;
}
return true;
}
}