You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2014/05/08 03:37:05 UTC

svn commit: r1593165 - /commons/proper/net/trunk/src/main/java/examples/cidr/SubnetUtilsExample.java

Author: sebb
Date: Thu May  8 01:37:05 2014
New Revision: 1593165

URL: http://svn.apache.org/r1593165
Log:
Close the resource

Modified:
    commons/proper/net/trunk/src/main/java/examples/cidr/SubnetUtilsExample.java

Modified: commons/proper/net/trunk/src/main/java/examples/cidr/SubnetUtilsExample.java
URL: http://svn.apache.org/viewvc/commons/proper/net/trunk/src/main/java/examples/cidr/SubnetUtilsExample.java?rev=1593165&r1=1593164&r2=1593165&view=diff
==============================================================================
--- commons/proper/net/trunk/src/main/java/examples/cidr/SubnetUtilsExample.java (original)
+++ commons/proper/net/trunk/src/main/java/examples/cidr/SubnetUtilsExample.java Thu May  8 01:37:05 2014
@@ -66,7 +66,7 @@ public class SubnetUtilsExample {
                     + "within the subnet [" + subnet + "]");
             System.out.println(prompt);
         }
-
+        scanner.close();
     }
 
 }