File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -191,7 +191,9 @@ public static LinkedHashMap<String, List<String>> parseJDBCParams(String params)
191191 //**************************************************************************
192192 //** decode
193193 //**************************************************************************
194- private static String decode (String str ){
194+ /** Used to decode a URL encoded string
195+ */
196+ public static String decode (String str ){
195197 try {
196198
197199 //Replace unencoded "%" characters with "%25". The regex finds a "%"
@@ -231,6 +233,8 @@ private static String decode(String str){
231233 //**************************************************************************
232234 //** encode
233235 //**************************************************************************
236+ /** Used to URL encode a string
237+ */
234238 private static String encode (String str ){
235239 try {
236240 if (str .contains (" " )){
You can’t perform that action at this time.
0 commit comments