-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
695bc07
commit 93d510a
Showing
1 changed file
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Found a "bug" in =com.jeantessier.dependency.JSONPrinter=. It rendered boolean | ||
values for confirmed nodes as the strings ="true"= and ="false"=, instead of | ||
the raw boolean values =true= and =false= that are allowed in JSON. I had to | ||
fix quite a few test data templates. The templates didn't end with a newline | ||
character because I compared them to the printer's output, which doesn't have | ||
one either. But IntelliJ IDEA decided to add a newline on each file that I | ||
touched, out of the goodness of its heart. I would have been tedious to open | ||
each file in another editor, just to remove a newline. So, I adjusted the test | ||
to add a newline to the printer's output instead. |