File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/main/java/de/rub/nds/crawler Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ public DenylistFileProvider(String denylistFilename) {
5858 }
5959 }
6060
61- private boolean isInSubnet (String ip , SubnetUtils .SubnetInfo subnetInfo ) {
61+ private static boolean isInSubnet (String ip , SubnetUtils .SubnetInfo subnetInfo ) {
6262 try {
6363 return subnetInfo .isInRange (ip );
6464 } catch (IllegalArgumentException e ) {
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ public List<String> getTargetList() {
9090 return targetList ;
9191 }
9292
93- private InflaterInputStream getZipInputStream (String filename ) throws IOException {
93+ private static InflaterInputStream getZipInputStream (String filename ) throws IOException {
9494 if (filename .contains (".gz" )) {
9595 return new GZIPInputStream (new FileInputStream (filename ));
9696 } else {
You can’t perform that action at this time.
0 commit comments