Skip to content

Conversation

@tcheeric
Copy link
Owner

Summary

Related issue: #____

What changed?

BREAKING

Review focus

Checklist

  • Scope ≤ 300 lines (or split/stack)
  • Title is verb + object (e.g., “Refactor auth middleware to async”)
  • Description links the issue and answers “why now?”
  • BREAKING flagged if needed
  • Tests/docs updated (if relevant)

@tcheeric tcheeric merged commit c652345 into develop Oct 14, 2025
1 check passed
@tcheeric tcheeric deleted the chore/bump-version-1.0.2-SNAPSHOT branch October 14, 2025 00:18
Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting

Comment on lines +70 to +76
public GenericEvent buildReplaceableEvent(
List<BaseTag> tags, Integer kind, String content) {
return buildReplaceableEvent(null, tags, kind, content);
}

public GenericEvent buildReplaceableEvent(List<BaseTag> tags, Integer kind, String content) {
return new GenericEventFactory<BaseTag>(resolveSender(null), kind, tags, content).create();
return new GenericEventFactory<>(resolveSender(null), kind, tags, content).create();

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P0 Badge Remove duplicate buildReplaceableEvent overload

buildReplaceableEvent(List<BaseTag> tags, Integer kind, String content) is declared twice in succession—first delegating to a nonexistent (Identity, List<BaseTag>, Integer, String) overload and then constructing the event directly. Java rejects duplicate methods with identical signatures, so this class will not compile and the module’s tests cannot run. The delegating overload probably intended to accept an Identity parameter.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants