Skip to content

Commit

Permalink
Remove writing of debugging files in JSON payload generation
Browse files Browse the repository at this point in the history
  • Loading branch information
atextor committed Sep 26, 2023
1 parent 6fe3bb2 commit 4572aef
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,6 @@ private String generateJsonForModel( final TestAspect model, final KnownVersion
final AspectModelJsonPayloadGenerator jsonGenerator = new AspectModelJsonPayloadGenerator( new AspectContext( versionedModel, aspect ) );
try {
final var payload = jsonGenerator.generateJson();
Files.write( Path.of( model.getName() + ".json" ), payload.getBytes( StandardCharsets.UTF_8 ) );
return payload;
} catch ( final IOException e ) {
throw new RuntimeException( e );
Expand Down

0 comments on commit 4572aef

Please sign in to comment.