Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Hash getHash() {
};

private final String name;
private final InlineElement desc;
private final transient InlineElement desc;

MessageKeyHash(String name, InlineElement desc) {
this.name = name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public enum TopicRoutingMode implements DescribedEnum {
code(TopicRouter.class.getSimpleName())));

private final String name;
private final InlineElement desc;
private final transient InlineElement desc;

TopicRoutingMode(String name, InlineElement desc) {
this.name = name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public enum CursorVerification implements DescribedEnum {
/** Print a warn message and start consuming from the valid offset. */
WARN_ON_MISMATCH(text("Print a warn message and start consuming from the valid offset."));

private final InlineElement desc;
private final transient InlineElement desc;

CursorVerification(InlineElement desc) {
this.desc = desc;
Expand Down