mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 13:41:21 +00:00
GUACAMOLE-38: Methods being tested need to be public.
This commit is contained in:
committed by
Nick Couchman
parent
97d2d3a2c9
commit
1438a5117b
@@ -155,7 +155,7 @@ public class QCParser {
|
|||||||
* @throws UnsupportedEncodingException
|
* @throws UnsupportedEncodingException
|
||||||
* If Java lacks UTF-8 support.
|
* If Java lacks UTF-8 support.
|
||||||
*/
|
*/
|
||||||
private static Map<String, String> parseQueryString(String queryStr)
|
public static Map<String, String> parseQueryString(String queryStr)
|
||||||
throws UnsupportedEncodingException {
|
throws UnsupportedEncodingException {
|
||||||
|
|
||||||
// Split the query string into the pairs
|
// Split the query string into the pairs
|
||||||
@@ -187,7 +187,7 @@ public class QCParser {
|
|||||||
* @throws UnsupportedEncodingException
|
* @throws UnsupportedEncodingException
|
||||||
* If Java lacks UTF-8 support.
|
* If Java lacks UTF-8 support.
|
||||||
*/
|
*/
|
||||||
private static void parseUserInfo(String userInfo,
|
public static void parseUserInfo(String userInfo,
|
||||||
GuacamoleConfiguration config)
|
GuacamoleConfiguration config)
|
||||||
throws UnsupportedEncodingException {
|
throws UnsupportedEncodingException {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user