Use exceptions for filters, highlight words that were filtered
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package com.alttd.chat.objects;
|
||||
|
||||
public class ModifiableString {
|
||||
private String string;
|
||||
|
||||
public ModifiableString(String string) {
|
||||
this.string = string;
|
||||
}
|
||||
|
||||
public void string(String string) {
|
||||
this.string = string;
|
||||
}
|
||||
|
||||
public String string() {
|
||||
return string;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user