GUACAMOLE-38: Methods being tested need to be public.

This commit is contained in:
Nick Couchman
2018-05-30 11:31:41 -04:00
committed by Nick Couchman
parent 97d2d3a2c9
commit 1438a5117b

View File

@@ -155,7 +155,7 @@ public class QCParser {
* @throws UnsupportedEncodingException
* If Java lacks UTF-8 support.
*/
private static Map<String, String> parseQueryString(String queryStr)
public static Map<String, String> parseQueryString(String queryStr)
throws UnsupportedEncodingException {
// Split the query string into the pairs
@@ -187,7 +187,7 @@ public class QCParser {
* @throws UnsupportedEncodingException
* If Java lacks UTF-8 support.
*/
private static void parseUserInfo(String userInfo,
public static void parseUserInfo(String userInfo,
GuacamoleConfiguration config)
throws UnsupportedEncodingException {