Skip to content

Commit

Permalink
[MARTIFACT-75] consistently rename local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed Oct 21, 2024
1 parent c3dcd37 commit e5c803b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ class ReferenceBuildinfoUtil {
private static final Set<String> JAR_EXTENSIONS;

static {
Set<String> types = new HashSet<>();
types.add("jar");
types.add("war");
types.add("ear");
types.add("rar");
JAR_EXTENSIONS = Collections.unmodifiableSet(types);
Set<String> extensions = new HashSet<>();
extensions.add("jar");
extensions.add("war");
extensions.add("ear");
extensions.add("rar");
JAR_EXTENSIONS = Collections.unmodifiableSet(extensions);
}

private final Log log;
Expand Down

0 comments on commit e5c803b

Please sign in to comment.