mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-22 09:47:34 +01:00
style: remove weird indented code
This commit is contained in:
parent
f1393c3ca6
commit
150ffc4fdc
@ -264,20 +264,21 @@ public class StringBlock {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
int offset = m_styleOffsets[index] / 4;
|
int offset = m_styleOffsets[index] / 4;
|
||||||
int style[];
|
int count = 0;
|
||||||
{
|
int[] style;
|
||||||
int count = 0;
|
|
||||||
for (int i = offset; i < m_styles.length; ++i) {
|
for (int i = offset; i < m_styles.length; ++i) {
|
||||||
if (m_styles[i] == -1) {
|
if (m_styles[i] == -1) {
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
count += 1;
|
|
||||||
}
|
}
|
||||||
if (count == 0 || (count % 3) != 0) {
|
count += 1;
|
||||||
return null;
|
|
||||||
}
|
|
||||||
style = new int[count];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (count == 0 || (count % 3) != 0) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
style = new int[count];
|
||||||
|
|
||||||
for (int i = offset, j = 0; i < m_styles.length;) {
|
for (int i = offset, j = 0; i < m_styles.length;) {
|
||||||
if (m_styles[i] == -1) {
|
if (m_styles[i] == -1) {
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user