Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/main/java/org/plumelib/reflection/Signatures.java
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,6 @@ public static ClassnameAndDimensions parseFqBinaryName(@FqBinaryName String type
}

/** A map from Java primitive type name (such as "int") to field descriptor (such as "I"). */
@SuppressWarnings("signature") // string literals are verified manually
private static final Map<@PrimitiveType String, @FieldDescriptor String>
primitiveToFieldDescriptor =
Map.of(
Expand Down Expand Up @@ -596,7 +595,6 @@ public static ClassnameAndDimensions parseFqBinaryName(@FqBinaryName String type
* @param typename a field descriptor (the name of a type in JVML format)
* @return the corresponding fully-qualified name (what you would write in Java source code)
*/
@SuppressWarnings("signature") // conversion routine
public static @FullyQualifiedName String fieldDescriptorToFullyQualified(
@FieldDescriptor String typename) {
return binaryNameToFullyQualified(fieldDescriptorToBinaryName(typename));
Expand Down