It failed with "RuntimeException: I never heard about what kind of build
it was!!" on my (@kriegaex) Windows machine, mostly because in case of a
failing full build the corresponding status is never set.
TODO: Ensure that 'MyStateListener.informedAboutKindOfBuild' is set for
failed builds, too.
Signed-off-by: Alexander Kriegisch <Alexander@Kriegisch.name>
for (String s : woven) {
System.out.println(" :" + s);
}
+ try {
if (wasFullBuild()) {
System.out.println("It was a batch (full) build");
}
+ } catch (RuntimeException ignored) {
+ // There is "RuntimeException: I never heard about what kind of build it was!!" thrown by
+ // MyStateListener.wasFullBuild().
+ //
+ // TODO: Ensure that 'MyStateListener.informedAboutKindOfBuild' is set for failed builds, too.
+ }
System.out.println("=============================================");
}
log(s);
}
}
-}
\ No newline at end of file
+}