Remove public from interfaces

This commit is contained in:
Jano Svitok 2018-08-06 13:07:10 +02:00
parent 048291c3ca
commit 6dd5ad2566
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ package se.vidstige.jadb;
import java.util.List;
public interface DeviceDetectionListener {
public void onDetect(List<JadbDevice> devices);
public void onException(Exception e);
void onDetect(List<JadbDevice> devices);
void onException(Exception e);
}

View File

@ -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;
}