Skip to content

Commit 43db123

Browse files
authored
Merge pull request #882 from basil/reproducible
Support Maven reproducible builds
2 parents 4499bf9 + 8c0381d commit 43db123

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dgm-builder/src/main/java/com/cloudbees/groovy/cps/tool/Translator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ private String mangledName(ExecutableElement e) {
169169
*/
170170
public void translate(String fqcn, String outfqcn, String sourceJarName) throws JClassAlreadyExistsException {
171171
final JDefinedClass $output = codeModel._class(outfqcn);
172-
$output.annotate(Generated.class).param("value", Translator.class.getName()).param("date", new Date().toString()).param("comments", "based on " + sourceJarName);
172+
$output.annotate(Generated.class).param("value", Translator.class.getName()).param("comments", "based on " + sourceJarName);
173173
$output.annotate(SuppressWarnings.class).param("value", "rawtypes");
174174
$output.constructor(JMod.PRIVATE);
175175

0 commit comments

Comments
 (0)