mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 14:44:26 +02:00
refactor: return null, if always null
This commit is contained in:
parent
2eac0339b4
commit
f1393c3ca6
@ -121,7 +121,7 @@ public class StringBlock {
|
|||||||
public String getHTML(int index) {
|
public String getHTML(int index) {
|
||||||
String raw = getString(index);
|
String raw = getString(index);
|
||||||
if (raw == null) {
|
if (raw == null) {
|
||||||
return raw;
|
return null;
|
||||||
}
|
}
|
||||||
int[] style = getStyle(index);
|
int[] style = getStyle(index);
|
||||||
if (style == null) {
|
if (style == null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user