Skip to content

Commit

Permalink
Remove test that cannot run in context.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Mar 8, 2024
1 parent 53ce259 commit 5ce6352
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1905,7 +1905,7 @@ public Generic onParameterizedType(Generic parameterizedType) {
Generic ownerType = parameterizedType.getOwnerType();
List<Generic> typeArguments;
if (TypeDescription.AbstractBase.RAW_TYPES) {
typeArguments = Collections.emptyList();
typeArguments = Collections.<Generic>emptyList();
} else {
typeArguments = new ArrayList<Generic>(parameterizedType.getTypeArguments().size());
for (Generic typeArgument : parameterizedType.getTypeArguments()) {
Expand Down

This file was deleted.

0 comments on commit 5ce6352

Please sign in to comment.