prompto.debug.response.VoidDebugResponse Maven / Gradle / Ivy
The newest version!
package prompto.debug.response;
public class VoidDebugResponse implements IDebugResponse {
public VoidDebugResponse() {
}
@Override
public int hashCode() {
return this.getClass().hashCode();
}
@Override
public boolean equals(Object other) {
return this == other || other instanceof VoidDebugResponse;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy