* @return String indicating the new build
*/
private String getNewBuildString() {
String b = null;
try {
BuildInformation bi = BuildInformation.getCurrent();
if (bi != null) {
b = bi.toString();
}
} catch (ApplicationException e) {
LOG.log(Level.INFO, "error trying to determine new build string", e);
}
if (b == null) {