From d804c5ae75e7e82fbc3c322b07b7706ba22ed34f Mon Sep 17 00:00:00 2001 From: Martin Weber Date: Fri, 29 May 2020 21:34:55 +0200 Subject: [PATCH] Bug 559674: make class final Change-Id: Iefdc5cb2359546ad06e9770baf79b379b14e31d8 Signed-off-by: Martin Weber --- .../is/core/participant/builtins/GccOutputProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake/org.eclipse.cdt.cmake.is.core/src/main/java/org/eclipse/cdt/cmake/is/core/participant/builtins/GccOutputProcessor.java b/cmake/org.eclipse.cdt.cmake.is.core/src/main/java/org/eclipse/cdt/cmake/is/core/participant/builtins/GccOutputProcessor.java index 136edfd61ae..d8ab0feb916 100644 --- a/cmake/org.eclipse.cdt.cmake.is.core/src/main/java/org/eclipse/cdt/cmake/is/core/participant/builtins/GccOutputProcessor.java +++ b/cmake/org.eclipse.cdt.cmake.is.core/src/main/java/org/eclipse/cdt/cmake/is/core/participant/builtins/GccOutputProcessor.java @@ -19,11 +19,11 @@ import org.eclipse.cdt.core.settings.model.ICSettingEntry; import org.eclipse.cdt.core.settings.model.util.CDataUtil; /** - * A {link IBuiltinsOutputProcessor} for the GNU C and GNU C++ compiler. + * A {link IBuiltinsOutputProcessor} for the GNU C and GNU C++ compiler and derivatives. * * @author Martin Weber */ -public class GccOutputProcessor implements IBuiltinsOutputProcessor { +public final class GccOutputProcessor implements IBuiltinsOutputProcessor { @SuppressWarnings("nls") private static final OutputLineProcessor[] macros = { new OutputLineProcessor("#define\\s+(\\S+)\\s*(.*)", 1, 2, false, 0),