Browse Source

Random minor tidying

Change-Id: Ia9bb44a6ac02aec3d5991a1d3a9a003a344b6947
Reviewed-on: http://gerrit.dmdirc.com/3919
Reviewed-by: Greg Holmes <greg@dmdirc.com>
Automatic-Compile: DMDirc Build Manager
changes/19/3919/2
Chris Smith 9 years ago
parent
commit
8e8e065e36
2 changed files with 3 additions and 5 deletions
  1. 0
    2
      build.gradle
  2. 3
    3
      dcc/test/com/dmdirc/addons/dcc/IpToLongTest.java

+ 0
- 2
build.gradle View File

1
 // DMDirc plugins build script
1
 // DMDirc plugins build script
2
-//
3
-// Run with -PdmdircOutput=/path/to/DMDirc/classes/
4
 
2
 
5
 import org.mdonoughe.JGitDescribeTask
3
 import org.mdonoughe.JGitDescribeTask
6
 
4
 

+ 3
- 3
dcc/test/com/dmdirc/addons/dcc/IpToLongTest.java View File

34
 @RunWith(Parameterized.class)
34
 @RunWith(Parameterized.class)
35
 public class IpToLongTest {
35
 public class IpToLongTest {
36
     
36
     
37
-    private String stringip;
38
-    private long longip;
37
+    private final String stringip;
38
+    private final long longip;
39
 
39
 
40
-    public IpToLongTest(String stringip, Long longip) {
40
+    public IpToLongTest(final String stringip, final Long longip) {
41
         this.stringip = stringip;
41
         this.stringip = stringip;
42
         this.longip = longip;
42
         this.longip = longip;
43
     }
43
     }

Loading…
Cancel
Save