change unknown to none to avoid confusion

This commit is contained in:
DragonSlayer2189 2020-11-29 19:29:38 -05:00 committed by GitHub
parent de2dff0376
commit 936b944a51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ public enum Gender {
/**
* Not set
*/
UNKNOWN;
NONE;
/**
* Get chat prefix for gender.
@ -31,4 +31,4 @@ public enum Gender {
return Settings.PREFIX_GENDERLESS.value();
}
}
}
}