fix: loop in amoled patch
This commit is contained in:
parent
27f6aa5b7b
commit
15630fe9f9
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ class AmoledPatch : ResourcePatch() {
|
|||
data.getXmlEditor("res${File.separator}values${File.separator}colors.xml").use { editor ->
|
||||
val resourcesNode = editor.file.getElementsByTagName("resources").item(0) as Element
|
||||
|
||||
for (i in 0..resourcesNode.childNodes.length) {
|
||||
for (i in 0 until resourcesNode.childNodes.length) {
|
||||
val node = resourcesNode.childNodes.item(i) as Element
|
||||
|
||||
node.nodeValue = when (node.getAttribute("name")) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue