1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 18:05:33 +02:00

fixed warning

This commit is contained in:
John Cortell 2010-02-23 15:11:14 +00:00
parent c2f443c0a3
commit 2dc9a8c1d3

View file

@ -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$
}
/**