aboutsummaryrefslogtreecommitdiffstats
path: root/src/junit/com/jogamp/common/net/TestURIQueryProps.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-07-03 16:06:47 +0200
committerSven Gothel <[email protected]>2014-07-03 16:06:47 +0200
commitdf9ff7f340a5ab4e07efc613f5f264eeae63d4c7 (patch)
tree239ae276b82024b140428e6c0fe5d739fdd686a4 /src/junit/com/jogamp/common/net/TestURIQueryProps.java
parenteb47aaba63e3b1bf55f274a0f338f1010a017ae4 (diff)
Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74)
Code Clean-Up based on our Recommended Settings (jogamp-scripting c47bc86ae2ee268a1f38c5580d11f93d7f8d6e74) - Change non static accesses to static members using declaring type - Change indirect accesses to static members to direct accesses (accesses through subtypes) - Add final modifier to private fields - Add final modifier to method parameters - Add final modifier to local variables - Remove unnecessary casts - Remove unnecessary '$NON-NLS$' tags - Remove trailing white spaces on all lines
Diffstat (limited to 'src/junit/com/jogamp/common/net/TestURIQueryProps.java')
-rw-r--r--src/junit/com/jogamp/common/net/TestURIQueryProps.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/junit/com/jogamp/common/net/TestURIQueryProps.java b/src/junit/com/jogamp/common/net/TestURIQueryProps.java
index 09cef61..4f4435a 100644
--- a/src/junit/com/jogamp/common/net/TestURIQueryProps.java
+++ b/src/junit/com/jogamp/common/net/TestURIQueryProps.java
@@ -16,35 +16,35 @@ import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestURIQueryProps extends JunitTracer {
-
+
@Test
public void test() throws IOException, URISyntaxException {
final String SCHEME = "camera";
final String HOST = "somewhere";
final String PATH = "0";
- String[] args = new String[] {
+ final String[] args = new String[] {
SCHEME+"://"+HOST+"/"+PATH,
SCHEME+"://"+HOST+"/"+PATH+"?p1=1",
};
for(int i=0; i<args.length-1; i+=2) {
- String uri_s0 = args[i];
- String uri_s1 = args[i+1];
- URI uri0 = new URI(uri_s0);
- URI uri1 = new URI(uri_s1);
+ final String uri_s0 = args[i];
+ final String uri_s1 = args[i+1];
+ final URI uri0 = new URI(uri_s0);
+ final URI uri1 = new URI(uri_s1);
showURI(uri0);
showURI(uri1);
- URIQueryProps data = URIQueryProps.create(uri1, ';');
+ final URIQueryProps data = URIQueryProps.create(uri1, ';');
if(null == data) {
System.err.println("Error: NULL: <"+uri_s1+"> -> "+uri1+" -> NULL");
} else {
- URI uri1T = data.appendQuery(uri0);
+ final URI uri1T = data.appendQuery(uri0);
showURI(uri1T);
Assert.assertEquals(uri1, uri1T);
}
}
}
- public static void main(String args[]) throws IOException {
- String tstname = TestURIQueryProps.class.getName();
+ public static void main(final String args[]) throws IOException {
+ final String tstname = TestURIQueryProps.class.getName();
org.junit.runner.JUnitCore.main(tstname);
- }
+ }
}