fix: compile error
Some checks failed
github-mirror / push-github (push) Successful in 4s
Build / Gradle-Build (push) Successful in 33s
Test / Gradle-Test (push) Failing after 44s

This commit is contained in:
tueem 2025-03-26 19:46:44 +01:00
parent 2647a1f0b4
commit 0590789359
Signed by: tueem
GPG Key ID: 65C8667EC17A88FB

View File

@ -1,6 +1,5 @@
package net.tomatentum.marinara.registry;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Optional;
import java.util.Set;
@ -35,15 +34,13 @@ public class InteractionEntry {
}
public InteractionEntry addMethod(InteractionMethod method) {
Optional<InteractionIdentifier> methodId = Arrays.stream(method.identifier())
.filter(x -> x.name().equals(identifier().name()))
.findFirst();
InteractionIdentifier identifier = method.identifier();
if (methodId.isEmpty())
throw new IllegalArgumentException("Method's identifiers did not contain the entry's identifier");
if (this.identifier().equals(identifier))
throw new IllegalArgumentException("Method's identifier did not equal the entry's identifier");
this.methods.add(method);
InteractionIdentifier.tryAddDescriptions(identifier, methodId.get());
InteractionIdentifier.tryAddDescriptions(identifier, identifier);
logger.debug("Added method {} to entry {}", method.method().getName(), this.identifier);
return this;
}