From 8b2d4ca67c2077d7812ba4fec93d94094df0faa8 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Fri, 17 Jan 2020 15:58:55 +0100 Subject: ConfigurationApp: hide not-mentioned by default, add parameter to show them anyway. --- .../src/lombok/core/configuration/TestConfiguration.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/configuration/src') 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(); -- cgit