Skip to content

Commit

Permalink
version 1.9.7 #733
Browse files Browse the repository at this point in the history
  • Loading branch information
MammatusPlatypus committed Jun 14, 2016
1 parent 30340c0 commit d0919e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/

ext {
projectVersion = '1.9.6'
projectVersion = '1.9.7'
boonVersion = '0.6.2'
boonGroup = "io.advantageous.boon"
springFrameworkVersion = '4.2.5.RELEASE'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ default HttpServer startServer() {


default HttpServer startServerAndWait() {
start();
return this;
throw new UnsupportedOperationException("startServerAndWait is not supported by " + this.getClass().getName());
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public interface Startable {
default void start() {
}


default void startWithNotify(Runnable runnable) {
throw new UnsupportedOperationException("start With Notice if not supported by " + this.getClass().getName());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public void start() {
final ServiceEndpointServer endpointServer = endpointServerBuilder().setUri("/")
.addService(new TestRestService()).setHttpServer(httpServer).build();

endpointServer.startServerAndWait();
endpointServer.startServer();



Expand Down

0 comments on commit d0919e1

Please sign in to comment.