Skip to content

Commit 19e7155

Browse files
author
Barry Warsaw
committed
Add a comment to explicitly empty method to avoid Codacy complaint
1 parent 35a2f75 commit 19e7155

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pygradle-plugin/src/main/groovy/com/linkedin/gradle/python/util/internal/zipapp/ThinZipappGenerator.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,8 @@ public Map<String, String> buildSubstitutions(PythonExtension extension, String
5858
}
5959

6060
@Override
61-
public void buildEntryPoints() throws Exception { };
61+
public void buildEntryPoints() throws Exception {
62+
// Generic zipapps don't build anything, so subclasses should override
63+
// this to build their entry point specific artifacts.
64+
};
6265
}

0 commit comments

Comments
 (0)