Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreutarass2010-01-29 18:19:40 +0000
committereutarass2010-01-29 18:19:40 +0000
commitbcf186274eb3a5c63748ed7fbe7cb454a65129a7 (patch)
treee5a0d31fc1ed54bf1c76f62780762353b026e1f1
parentfe4ef8fedd94cd5fc132f706918e1dc861839b11 (diff)
downloadorg.eclipse.tcf-bcf186274eb3a5c63748ed7fbe7cb454a65129a7.tar.gz
org.eclipse.tcf-bcf186274eb3a5c63748ed7fbe7cb454a65129a7.tar.xz
org.eclipse.tcf-bcf186274eb3a5c63748ed7fbe7cb454a65129a7.zip
Fixed: missing copyright note
-rw-r--r--plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFUserDefPeer.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFUserDefPeer.java b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFUserDefPeer.java
index 5f1d70cfb..a045fdbf4 100644
--- a/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFUserDefPeer.java
+++ b/plugins/org.eclipse.tm.tcf.debug/src/org/eclipse/tm/internal/tcf/debug/launch/TCFUserDefPeer.java
@@ -1,3 +1,13 @@
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 Wind River Systems, Inc. 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
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ *******************************************************************************/
package org.eclipse.tm.internal.tcf.debug.launch;
import java.io.BufferedReader;
@@ -82,7 +92,7 @@ public class TCFUserDefPeer extends AbstractPeer {
wr.close();
}
catch (Exception x) {
- Activator.log("Cannot read peer list", x);
+ Activator.log("Cannot save peer list", x);
}
}
}

Back to the top