Skip to content

Commit

Permalink
remove timestamp from generated scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
michi42 committed Jun 9, 2022
1 parent 4325811 commit b192ac2
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.time.Instant;
import java.util.List;
import java.util.function.Function;

Expand Down Expand Up @@ -112,7 +111,6 @@ public void saveOpticScriptDirectory(JMadModelDefinitionExportRequest exportRequ
MadxScriptCreationContext script = new MadxScriptCreationContext(modelFilePathResolver, model,
openOpticFile(directory, opticsDefinition));
script.comment("JMad export of model " + model.getName() + " optic " + opticsDefinition.getName());
script.comment("Generated: " + Instant.now().toString());
script.space();
opticsDefinition.getInitFiles().forEach(script::call);
script.close();
Expand Down

0 comments on commit b192ac2

Please sign in to comment.