com.skillw.pouvoir.util.read.Char Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
package com.skillw.pouvoir.util.read;
public class Char {
final char c;
public Char(char c) {
this.c = c;
}
@Override
public int hashCode() {
return this.c;
}
@Override
public boolean equals(Object o) {
return (o instanceof Char) && ((Char) o).c == this.c;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy