mirror of https://github.com/acidanthera/audk.git
Fixed EDKT400.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1836 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
0c61f948b2
commit
2679d84f24
|
@ -101,7 +101,7 @@ public class CreateStepTwo extends IDialog implements MouseListener {
|
|||
jComboBoxPackage = new ICheckBoxList();
|
||||
WorkspaceTools wt = new WorkspaceTools();
|
||||
Vector<String> v = new Vector<String>();
|
||||
packageVector = wt.getAllPackages();
|
||||
packageVector = wt.getAllRepackagablePackages();
|
||||
Iterator<PackageIdentification> iter = packageVector.iterator();
|
||||
while (iter.hasNext()) {
|
||||
PackageIdentification item = iter.next();
|
||||
|
|
|
@ -227,7 +227,7 @@ public class WorkspaceTools {
|
|||
@return
|
||||
|
||||
**/
|
||||
public Vector<PackageIdentification> getAllRepackagbalePackages() {
|
||||
public Vector<PackageIdentification> getAllRepackagablePackages() {
|
||||
Vector<PackageIdentification> v = new Vector<PackageIdentification>();
|
||||
for (int index = 0; index < GlobalData.openingPackageList.size(); index++) {
|
||||
OpeningPackageType opt = GlobalData.openingPackageList.getOpeningPackageByIndex(index);
|
||||
|
|
Loading…
Reference in New Issue