[spelling] Nul -> Null

This commit is contained in:
Connor Tumbleson 2014-05-12 17:11:28 -05:00
parent fc0b584af1
commit a3897bfe0d
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ public class ARSCDecoder {
private ResPackage readPackage() throws IOException, AndrolibException { private ResPackage readPackage() throws IOException, AndrolibException {
checkChunkType(Header.TYPE_PACKAGE); checkChunkType(Header.TYPE_PACKAGE);
int id = (byte) mIn.readInt(); int id = (byte) mIn.readInt();
String name = mIn.readNulEndedString(128, true); String name = mIn.readNullEndedString(128, true);
/* typeNameStrings */mIn.skipInt(); /* typeNameStrings */mIn.skipInt();
/* typeNameCount */mIn.skipInt(); /* typeNameCount */mIn.skipInt();
/* specNameStrings */mIn.skipInt(); /* specNameStrings */mIn.skipInt();

View File

@ -66,7 +66,7 @@ public class ExtDataInput extends DataInputDelegate {
} }
} }
public String readNulEndedString(int length, boolean fixed) public String readNullEndedString(int length, boolean fixed)
throws IOException { throws IOException {
StringBuilder string = new StringBuilder(16); StringBuilder string = new StringBuilder(16);
while(length-- != 0) { while(length-- != 0) {