diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-01-25 01:38:32 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-01-25 01:38:32 +0000 |
commit | ceea362ed6c5e41ce78fbf8b9da8428c7f794136 (patch) | |
tree | 402e651407b99967fd676978e548066e6d7e2f1c /Tools/Java | |
parent | e3cc406130b14c020c75e3a169f94ba001bf2128 (diff) | |
download | edk2-platforms-ceea362ed6c5e41ce78fbf8b9da8428c7f794136.tar.xz |
Fixed the Indentifier type issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2306 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Java')
-rw-r--r-- | Tools/Java/Source/FrameworkWizard/src/org/tianocore/frameworkwizard/platform/ui/FpdFileContents.java | 8 |
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 979d49ca39..d8dfb279ba 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();
|