Skip to content

Commit

Permalink
fix: Wrong IncludeReference.Kind used for IncludeReference.SELF eclip…
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Mar 4, 2024
1 parent 33dbe01 commit 277dc5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public enum Kind {
}

private static final IncludeReference BASE = new IncludeReference(Kind.Base, RawRepository.DOLLAR_BASE, "");
private static final IncludeReference SELF = new IncludeReference(Kind.Base, RawRepository.DOLLAR_SELF, "");
private static final IncludeReference SELF = new IncludeReference(Kind.Self, RawRepository.DOLLAR_SELF, "");

public static IncludeReference parseInclude(final String include) {
return switch (include) {
Expand Down

0 comments on commit 277dc5a

Please sign in to comment.