From 2dc9a8c1d3c8b8d84a10ac546240edd9b555785a Mon Sep 17 00:00:00 2001 From: John Cortell Date: Tue, 23 Feb 2010 15:11:14 +0000 Subject: [PATCH] fixed warning --- .../mi/org/eclipse/cdt/debug/mi/core/command/CLICatch.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/CLICatch.java b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/CLICatch.java index 710f1cb08de..0e297358831 100644 --- a/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/CLICatch.java +++ b/debug/org.eclipse.cdt.debug.mi.core/mi/org/eclipse/cdt/debug/mi/core/command/CLICatch.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2006 QNX Software Systems and others. + * Copyright (c) 2000, 2010 QNX Software Systems and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -26,7 +26,7 @@ public class CLICatch extends CLICommand { MIOutput out; public CLICatch(String event, String arg) { - super("catch " + event + " "+arg); //$NON-NLS-1$ + super("catch " + event + ' ' +arg); //$NON-NLS-1$ } /**