This is an automated email from the ASF dual-hosted git repository. rotty3000 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/aries-jax-rs-whiteboard.git
commit 472a3660426b551782f7fe43697227289d96f0e4 Author: Raymond Auge <[email protected]> AuthorDate: Sat Nov 20 22:52:08 2021 -0500 implement missing method Signed-off-by: Raymond Auge <[email protected]> --- .../src/test/java/test/types/ResourceMethodInfoDTOWrapper.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/jax-rs.whiteboard/src/test/java/test/types/ResourceMethodInfoDTOWrapper.java b/jax-rs.whiteboard/src/test/java/test/types/ResourceMethodInfoDTOWrapper.java index 53eeed4..321db01 100644 --- a/jax-rs.whiteboard/src/test/java/test/types/ResourceMethodInfoDTOWrapper.java +++ b/jax-rs.whiteboard/src/test/java/test/types/ResourceMethodInfoDTOWrapper.java @@ -52,4 +52,11 @@ public class ResourceMethodInfoDTOWrapper Arrays.equals(nameBindings, that.nameBindings); } + @Override + public int hashCode() { + return Objects.hash( + path, method, Arrays.hashCode(consumingMimeType), + Arrays.hashCode(producingMimeType), Arrays.hashCode(nameBindings)); + } + }
