fixed OK fallback

This commit is contained in:
Ryan Baxter
2016-07-21 21:17:11 -04:00
parent 0de3d12965
commit 32f86b57d3

View File

@@ -21,6 +21,10 @@ public class MyService {
}
public String fallback() {
return "from the fallback";
}
public String fallback(boolean throwSomething) {
return "from the fallback";
}