Open-source multiplayer game server compatible with the RuneScape client https://www.openrs2.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
openrs2/asm/src/main/java/org/openrs2/asm/filter/GlobClassFilter.kt

12 lines
402 B

package org.openrs2.asm.filter
import com.fasterxml.jackson.annotation.JsonIgnore
public class GlobClassFilter(@Suppress("CanBeParameter") private val patterns: List<String>) : ClassFilter {
@JsonIgnore
private val compiledPatterns = patterns.map(Glob::compileClass).toList()
override fun matches(name: String): Boolean {
return compiledPatterns.any { it.matches(name) }
}
}