Skip to content

Commit

Permalink
CAMEL-20714 Added public no-arg constructor for SourceCache (#13903)
Browse files Browse the repository at this point in the history
  • Loading branch information
dk2k authored Apr 24, 2024
1 parent 25bedbb commit 6ff60e3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ public SourceCache(String data) {
this.length = data.length();
}

public SourceCache() {
throw new IllegalStateException();
}

@Override
public void reset() {
// do nothing here
Expand Down

0 comments on commit 6ff60e3

Please sign in to comment.