Skip to content

Commit

Permalink
Make the new TypeRewriter.rewriteUnwrappedType protected
Browse files Browse the repository at this point in the history
This method shouldn't be called from outside the class.
  • Loading branch information
JesusFreke committed Feb 3, 2020
1 parent 12b9523 commit 409cf27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public class TypeRewriter implements Rewriter<String> {
* @return The modified version of the unwrapped type. This will be re-array-ified if the original wrapped type was
* an array.
*/
@Nonnull public String rewriteUnwrappedType(@Nonnull String value) {
@Nonnull protected String rewriteUnwrappedType(@Nonnull String value) {
return value;
}
}

0 comments on commit 409cf27

Please # to comment.