mirror of
https://github.com/revanced/jadb.git
synced 2024-11-19 02:29:24 +01:00
Java 7: collapse catch clauses
This commit is contained in:
parent
a735c0f693
commit
bdbb454acb
@ -31,9 +31,7 @@ public class RealDeviceTestCases {
|
||||
public static void tryToStartAdbServer() {
|
||||
try {
|
||||
new AdbServerLauncher(new Subprocess(), System.getenv()).launch();
|
||||
} catch (IOException e) {
|
||||
System.out.println("Could not start adb-server");
|
||||
} catch (InterruptedException e) {
|
||||
} catch (IOException | InterruptedException e) {
|
||||
System.out.println("Could not start adb-server");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user