We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e3fc5d commit 5b24341Copy full SHA for 5b24341
src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java
@@ -1152,7 +1152,9 @@ public void execute() {
1152
}
1153
1154
1155
- if (outputTimestamp != null && (outputTimestamp.length() > 1 || Character.isDigit(outputTimestamp.charAt(0)))) {
+ if (outputTimestamp != null
1156
+ && !outputTimestamp.isEmpty()
1157
+ && (outputTimestamp.length() > 1 || Character.isDigit(outputTimestamp.charAt(0)))) {
1158
// if Reproducible Builds mode, apply workaround
1159
patchJdkModuleVersion(compilerResult, sources);
1160
0 commit comments