Skip to content

Commit

Permalink
style: Make checkstyle happy
Browse files Browse the repository at this point in the history
  • Loading branch information
aikebah committed Feb 27, 2023
1 parent 638e921 commit 7591497
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ protected boolean analyzePOM(Dependency dependency, List<ClassNameInformation> c
* @return a Properties object or null if no pom.properties was found
*/
private Properties retrievePomProperties(String path, final JarFile jar) {
Properties pomProperties = new Properties();
final Properties pomProperties = new Properties();
final String propPath = path.substring(0, path.length() - 7) + "pom.properties";
final ZipEntry propEntry = jar.getEntry(propPath);
if (propEntry != null) {
Expand Down

0 comments on commit 7591497

Please sign in to comment.