mirror of https://github.com/acidanthera/audk.git
Fixed spelling errors and XML element capitalization.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1367 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
af6afe483d
commit
2aee15b8a1
|
@ -230,7 +230,7 @@ public class Far {
|
|||
// Check Md5
|
||||
//
|
||||
if (!ffItem.getMd5Value().equalsIgnoreCase(FarMd5.md5(totalBuffer))){
|
||||
throw new Exception (ffItem.getRelativeFilename() + " Md5 is invaild!");
|
||||
throw new Exception (ffItem.getRelativeFilename() + " MD5 Checksum is invaild!");
|
||||
}
|
||||
outputStream.write(totalBuffer);
|
||||
fis.close();
|
||||
|
|
|
@ -69,9 +69,9 @@ public class Mainfest implements ManifestInterface {
|
|||
|
||||
final static String farHeader_Description = "Description";
|
||||
|
||||
final static String farHeader_CopyRight = "CopyRight";
|
||||
final static String farHeader_CopyRight = "Copyright";
|
||||
|
||||
final static String farHeader_License = "Licese";
|
||||
final static String farHeader_License = "License";
|
||||
|
||||
final static String farHeader_Specification = "Specification";
|
||||
|
||||
|
@ -99,7 +99,7 @@ public class Mainfest implements ManifestInterface {
|
|||
//
|
||||
final static String farPackageList_FarPackage = "FarPackage";
|
||||
|
||||
final static String farPackage_FarfileName = "FarFileName";
|
||||
final static String farPackage_FarfileName = "FarFilename";
|
||||
|
||||
final static String farPackage_DefaultPath = "DefaultPath";
|
||||
|
||||
|
|
Loading…
Reference in New Issue