mirror of
https://github.com/revanced/ARSCLib.git
synced 2025-04-30 22:34:24 +02:00
23 lines
455 B
Java
Executable File
23 lines
455 B
Java
Executable File
package com.reandroid.lib.arsc.array;
|
|
|
|
import com.reandroid.lib.arsc.base.BlockArray;
|
|
import com.reandroid.lib.arsc.chunk.xml.BaseXmlChunk;
|
|
|
|
public class ResXmlChunkArray extends BlockArray<BaseXmlChunk> {
|
|
|
|
@Override
|
|
public BaseXmlChunk newInstance() {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public BaseXmlChunk[] newInstance(int len) {
|
|
return new BaseXmlChunk[len];
|
|
}
|
|
|
|
@Override
|
|
protected void onRefreshed() {
|
|
|
|
}
|
|
}
|