summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java
index 979d49c..d8dfb27 100644
--- a/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java
+++ b/Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java
@@ -1836,7 +1836,7 @@ public class FpdFileContents {
UserExtensionsDocument.UserExtensions userExts = getfpdBuildOpts().addNewUserExtensions();
userExts.setUserID(userId);
- userExts.setIdentifier(new BigInteger(id));
+ userExts.setIdentifier(id);
XmlCursor cursor = userExts.newCursor();
cursor.toEndToken();
@@ -1879,7 +1879,7 @@ public class FpdFileContents {
if (!ues.getUserID().equals(userId)) {
continue;
}
- if (ues.getIdentifier() == null || ues.getIdentifier().intValue() != id) {
+ if (ues.getIdentifier() == null || ues.getIdentifier() != new Integer(id).toString()) {
continue;
}
XmlCursor cursor = ues.newCursor();
@@ -1979,7 +1979,7 @@ public class FpdFileContents {
if (!ues.getUserID().equals(userId)) {
continue;
}
- if (ues.getIdentifier()== null || ues.getIdentifier().intValue() != id) {
+ if (ues.getIdentifier()== null || ues.getIdentifier() != new Integer(id).toString()) {
continue;
}
XmlCursor cursor = ues.newCursor();
@@ -2151,7 +2151,7 @@ public class FpdFileContents {
if (!ues.getUserID().equals(userId)) {
continue;
}
- if (ues.getIdentifier() == null || ues.getIdentifier().intValue() != id) {
+ if (ues.getIdentifier() == null || ues.getIdentifier() != new Integer(id).toString()) {
continue;
}
XmlCursor cursor = ues.newCursor();