mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 13:57:46 +01:00
[spelling] Nul -> Null
This commit is contained in:
parent
fc0b584af1
commit
a3897bfe0d
@ -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();
|
||||||
|
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user