diff options
author | Sven Gothel <[email protected]> | 2013-08-30 16:26:01 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2013-08-30 16:26:01 +0200 |
commit | ae1dd6990fb4f0f20cc908916a9cb68f0be866ff (patch) | |
tree | f52706949ce90928101f373b42ae080df7139925 /src/junit | |
parent | 0931943b4498eafe857a47dbfa19592caef51546 (diff) |
URIQueryProps: Custumize query separator, allowing user to favor ';' over '&'
Diffstat (limited to 'src/junit')
-rw-r--r-- | src/junit/com/jogamp/common/net/URLCompositionTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/junit/com/jogamp/common/net/URLCompositionTest.java b/src/junit/com/jogamp/common/net/URLCompositionTest.java index dcf8d9c..a33a4b3 100644 --- a/src/junit/com/jogamp/common/net/URLCompositionTest.java +++ b/src/junit/com/jogamp/common/net/URLCompositionTest.java @@ -220,7 +220,7 @@ public class URLCompositionTest extends JunitTracer { URI uri1 = new URI(uri_s1); showURI(uri0); showURI(uri1); - URIQueryProps data = URIQueryProps.create(uri1); + URIQueryProps data = URIQueryProps.create(uri1, ';'); if(null == data) { System.err.println("Error: NULL: <"+uri_s1+"> -> "+uri1+" -> NULL"); } else { |