Update gclc-swt and -socket for gclc-1.2.3

This commit is contained in:
Emmanuel Bigeon 2016-06-12 16:11:44 -04:00
parent c151107207
commit 763b7361ec
4 changed files with 7 additions and 5 deletions

View File

@ -87,7 +87,7 @@ of Emmanuel Bigeon. -->
<dependency>
<groupId>fr.bigeon</groupId>
<artifactId>gclc</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>fr.bigeon</groupId>

View File

@ -72,7 +72,8 @@ public class ConsoleTestApplication extends ConsoleApplication {
try {
manager.println("Test command ran fine");
} catch (IOException e) {
throw new CommandRunException("manager closed", e);
throw new CommandRunException("manager closed", e,
this);
}
}
});
@ -89,7 +90,8 @@ public class ConsoleTestApplication extends ConsoleApplication {
Thread.sleep(2000);
manager.println("Test command ran fine");
} catch (IOException | InterruptedException e) {
throw new CommandRunException("manager closed", e);
throw new CommandRunException("manager closed", e,
this);
}
}
});

View File

@ -53,7 +53,7 @@
<dependency>
<groupId>fr.bigeon</groupId>
<artifactId>gclc</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>
<dependency>
<groupId>fr.bigeon</groupId>

View File

@ -98,7 +98,7 @@ public class SWTConsoleShellTest {
try {
appl.getManager().prompt("Test");
} catch (IOException e) {
throw new CommandRunException("No input", e);
throw new CommandRunException("No input", e, this);
}
}
});