diff options
author | Roel Spilker <r.spilker@gmail.com> | 2020-01-17 15:58:55 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2020-01-20 14:11:29 +0100 |
commit | 8b2d4ca67c2077d7812ba4fec93d94094df0faa8 (patch) | |
tree | 50c673581408f9aa8fc113908091529623697248 /test/configuration/src | |
parent | 04523763dff98206487b2e358697226ac7b87fd7 (diff) | |
download | lombok-8b2d4ca67c2077d7812ba4fec93d94094df0faa8.tar.gz lombok-8b2d4ca67c2077d7812ba4fec93d94094df0faa8.tar.bz2 lombok-8b2d4ca67c2077d7812ba4fec93d94094df0faa8.zip |
ConfigurationApp: hide not-mentioned by default, add parameter to show them anyway.
Diffstat (limited to 'test/configuration/src')
-rw-r--r-- | test/configuration/src/lombok/core/configuration/TestConfiguration.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/configuration/src/lombok/core/configuration/TestConfiguration.java b/test/configuration/src/lombok/core/configuration/TestConfiguration.java index d2599334..377276bc 100644 --- a/test/configuration/src/lombok/core/configuration/TestConfiguration.java +++ b/test/configuration/src/lombok/core/configuration/TestConfiguration.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2014 The Project Lombok Authors. + * Copyright (C) 2014-2020 The Project Lombok Authors. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -52,7 +52,7 @@ public class TestConfiguration { PrintStream outStream = new PrintStream(rawOut); PrintStream errStream = new PrintStream(rawErr); - int result = new ConfigurationApp().redirectOutput(outStream, errStream).display(keys, true, paths, true); + int result = new ConfigurationApp().redirectOutput(outStream, errStream).display(keys, true, paths, true, false); outStream.flush(); errStream.flush(); |