mirror of
https://github.com/revanced/smali.git
synced 2025-06-12 12:17:37 +02:00
Rename the printLongAsHex and printIntAsHex methods in IndentingWriter for clarity
This commit is contained in:
@ -148,7 +148,7 @@ public class IndentingWriter extends Writer {
|
||||
//}
|
||||
}
|
||||
|
||||
public void printLongAsHex(long value) throws IOException {
|
||||
public void printUnsignedLongAsHex(long value) throws IOException {
|
||||
int bufferIndex = 0;
|
||||
do {
|
||||
int digit = (int)(value & 15);
|
||||
@ -166,7 +166,7 @@ public class IndentingWriter extends Writer {
|
||||
}
|
||||
}
|
||||
|
||||
public void printIntAsDec(int value) throws IOException {
|
||||
public void printSignedIntAsDec(int value) throws IOException {
|
||||
int bufferIndex = 0;
|
||||
|
||||
if (value < 0) {
|
||||
|
Reference in New Issue
Block a user