public boolean equals()

in geronimo-microprofile-reporter/src/main/java/org/apache/geronimo/microprofile/reporter/storage/templating/TemplatingEngine.java [431:440]


        public boolean equals(final Object o) {
            if (this == o) {
                return true;
            }
            if (o == null || TemplateKey.class != o.getClass()) {
                return false;
            }
            final TemplateKey that = TemplateKey.class.cast(o);
            return Objects.equals(template, that.template) && Objects.equals(loader, that.loader);
        }