Make the new TypeRewriter.rewriteUnwrappedType protected

This method shouldn't be called from outside the class.
This commit is contained in:
Ben Gruver 2020-02-02 20:52:57 -08:00
parent 12b95235e3
commit 409cf27ba9

View File

@ -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 * @return The modified version of the unwrapped type. This will be re-array-ified if the original wrapped type was
* an array. * an array.
*/ */
@Nonnull public String rewriteUnwrappedType(@Nonnull String value) { @Nonnull protected String rewriteUnwrappedType(@Nonnull String value) {
return value; return value;
} }
} }