Set catch to ignored

This commit is contained in:
JKetelaar
2014-08-29 15:17:23 +02:00
parent eb55ea3848
commit 331a8c96ac
@@ -25,7 +25,7 @@ public class NetworkInterface {
try { try {
return realMac = java.net.NetworkInterface.getByInetAddress( return realMac = java.net.NetworkInterface.getByInetAddress(
InetAddress.getLocalHost()).getHardwareAddress(); InetAddress.getLocalHost()).getHardwareAddress();
} catch (Exception e) { } catch (Exception ignored) {
} }
return mac; return mac;
} }