From 535a0dad589fe9aa9363870e3f14b13025fb9b04 Mon Sep 17 00:00:00 2001 From: Tueem Date: Fri, 11 Apr 2025 21:12:22 +0200 Subject: [PATCH] fix(method): add temporary public identifier setter to BCMethod --- .../net/tomatentum/cutin/method/BestCandidateMethod.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/src/main/java/net/tomatentum/cutin/method/BestCandidateMethod.java b/lib/src/main/java/net/tomatentum/cutin/method/BestCandidateMethod.java index 88a476a..c0eeb6f 100644 --- a/lib/src/main/java/net/tomatentum/cutin/method/BestCandidateMethod.java +++ b/lib/src/main/java/net/tomatentum/cutin/method/BestCandidateMethod.java @@ -61,6 +61,11 @@ public class BestCandidateMethod extends Ref .findFirst().orElse(null); } + //TODO add result Doc based Parser (which run before produce) + public void identifier(I identifier) { + this.identifier = identifier; + } + @Override public boolean equals(Object obj) { if (obj instanceof BestCandidateMethod bcMethod) {