mirror of
https://github.com/revanced/jadb.git
synced 2024-11-19 10:39:23 +01:00
Remove public from interfaces
This commit is contained in:
parent
048291c3ca
commit
6dd5ad2566
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user