Skip to content

Commit 7c489ad

Browse files
fix: random issues
Signed-off-by: androidacy-user <[email protected]>
1 parent f15df5f commit 7c489ad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99

1010
allprojects {
1111
group = "com.github.Androidacy.LSParanoid"
12-
version = "0.9.6"
12+
version = "0.9.7"
1313

1414
plugins.withType(JavaPlugin::class.java) {
1515
extensions.configure(JavaPluginExtension::class.java) {

processor/src/main/kotlin/org/lsposed/lsparanoid/processor/Analyzer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Analyzer(private val grip: Grip, private val classFilter: ((className: Str
4242
private fun findTypesToObfuscate(inputs: List<Path>): Set<Type.Object> {
4343
val registry = newObfuscatedTypeRegistry(grip.classRegistry).withCache()
4444
val query = grip select classes from inputs where registry.shouldObfuscate(classFilter)
45-
return query.execute().types.toHashSet()
45+
return query.execute().types.toSortedSet(compareBy { it.internalName })
4646
}
4747

4848
private fun createObfuscationConfiguration(type: Type.Object): ClassConfiguration {

0 commit comments

Comments
 (0)