Skip to content
This repository has been archived by the owner on Mar 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #8 from svrc-pivotal/patch-1
Browse files Browse the repository at this point in the history
Return null when no BIOS UUID is present
  • Loading branch information
mdaneri authored Jul 20, 2020
2 parents 6b4631d + 1c2700e commit e66561c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmbk/src/com/vmware/vmbk/util/Utility.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ static String getLinuxSystem_UUID() {
}
} catch (final Exception ex) {
System.err.println("Linux UUID Exp : " + ex.getMessage());
return "......";
return null;

}

Expand Down

0 comments on commit e66561c

Please sign in to comment.