diff --git a/src/se/vidstige/jadb/DeviceDetectionListener.java b/src/se/vidstige/jadb/DeviceDetectionListener.java index 2416998..2e23853 100644 --- a/src/se/vidstige/jadb/DeviceDetectionListener.java +++ b/src/se/vidstige/jadb/DeviceDetectionListener.java @@ -3,7 +3,7 @@ package se.vidstige.jadb; import java.util.List; public interface DeviceDetectionListener { - public void onDetect(List devices); - public void onException(Exception e); + void onDetect(List devices); + void onException(Exception e); } diff --git a/src/se/vidstige/jadb/ITransportFactory.java b/src/se/vidstige/jadb/ITransportFactory.java index 0f73a75..2d34aa5 100644 --- a/src/se/vidstige/jadb/ITransportFactory.java +++ b/src/se/vidstige/jadb/ITransportFactory.java @@ -6,5 +6,5 @@ import java.io.IOException; * Created by Törcsi on 2016. 03. 01.. */ public interface ITransportFactory { - public Transport createTransport() throws IOException; + Transport createTransport() throws IOException; }