Skip to content

Commit

Permalink
Remove debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
restingbull committed Apr 20, 2023
1 parent 3592c5b commit 44b0db1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ object BazelRunFiles {
?.let { File(it) }
?.also {
if (!it.exists()) {
throw IllegalStateException("$it does not exist in the runfiles!\n${System.getenv().entries.joinToString("\n\t") { (k,v) -> "$k: $v" }}")
throw IllegalStateException(
"$it does not exist in the runfiles!",
)
}
}
?: let {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,6 @@ public void testKaptKt() {
}
);

ctx.outLines().forEach(System.out::println);

ctx.assertFilesExist(
DirectoryType.INCREMENTAL_DATA,
"autovalue/TestKtValue.class");
Expand Down

0 comments on commit 44b0db1

Please sign in to comment.