Skip to content

Commit

Permalink
Remove diagnostic dumping
Browse files Browse the repository at this point in the history
  • Loading branch information
ascopes committed Dec 31, 2024
1 parent b3bd6e2 commit 00d868b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ void helloWorldJavacRamDirectory(JctCompiler compiler) {
.copyContentsFrom(resourcesDirectory());
var compilation = compiler.compile(workspace);

workspace.dump(System.err);

assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings();

Expand All @@ -66,8 +64,6 @@ void helloWorldJavacTempDirectory(JctCompiler compiler) {

var compilation = compiler.compile(workspace);

workspace.dump(System.err);

assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ void helloWorldRamDisk(JctCompiler compiler) {
// When
var compilation = compiler.compile(workspace);

workspace.dump(System.err);

// Then
assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings();
Expand Down Expand Up @@ -74,8 +72,6 @@ void helloWorldUsingTempDirectory(JctCompiler compiler) {
// When
var compilation = compiler.compile(workspace);

workspace.dump(System.err);

// Then
assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ void singleModuleInMultiModuleLayoutRamDisk(JctCompiler compiler) {
// When
var compilation = compiler.compile(workspace);

workspace.dump(System.err);

// Then
assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings()
Expand Down Expand Up @@ -75,8 +73,6 @@ void singleModuleInMultiModuleLayoutTempDirectory(JctCompiler compiler) {
// When
var compilation = compiler.compile(workspace);

workspace.dump(System.err);

// Then
assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings()
Expand Down Expand Up @@ -109,8 +105,6 @@ void multipleModulesInMultiModuleLayoutRamDisk(JctCompiler compiler) {
// When
var compilation = compiler.compile(workspace);

workspace.dump(System.err);

// Then
assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings();
Expand Down Expand Up @@ -157,8 +151,6 @@ void multipleModulesInMultiModuleLayoutTempDirectory(JctCompiler compiler) {
// When
var compilation = compiler.compile(workspace);

workspace.dump(System.err);

assertThatCompilation(compilation)
.isSuccessfulWithoutWarnings();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ void onlyTheClassesSpecifiedGetCompiled(JctCompiler compiler) {

var compilation = compiler.compile(workspace, "Fibonacci", "HelloWorld");

workspace.dump(System.err);

assertThat(compilation)
.isSuccessfulWithoutWarnings()
.classOutputPackages()
Expand Down

0 comments on commit 00d868b

Please sign in to comment.