Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2013-05-10 05:51:23 +0000
committerUwe Stieber2013-05-10 05:51:23 +0000
commit622d55abdddbbb16b5a02aebbe0a4f3ae28c8298 (patch)
tree02beb966fbd97206fbfe00c57ba4dd22d074894a /target_explorer
parent4f66bdffe271d4f9c6150db30c828703f7f34f43 (diff)
downloadorg.eclipse.tcf-622d55abdddbbb16b5a02aebbe0a4f3ae28c8298.tar.gz
org.eclipse.tcf-622d55abdddbbb16b5a02aebbe0a4f3ae28c8298.tar.xz
org.eclipse.tcf-622d55abdddbbb16b5a02aebbe0a4f3ae28c8298.zip
Target Explorer: Fix wrong class name in debug output
Diffstat (limited to 'target_explorer')
-rw-r--r--target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/utils/Host.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/utils/Host.java b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/utils/Host.java
index a3d47e773..f2e942608 100644
--- a/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/utils/Host.java
+++ b/target_explorer/plugins/org.eclipse.tcf.te.runtime/src/org/eclipse/tcf/te/runtime/utils/Host.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. All rights reserved.
+ * Copyright (c) 2011, 2013 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
@@ -96,7 +96,7 @@ public final class Host {
String entry = list[0];
if (Boolean.getBoolean("shell.debug")) { //$NON-NLS-1$
- System.out.println("UtilityEnvironment#getLinuxRelease: reading file: " + etcdir + "/" + entry); //$NON-NLS-1$ //$NON-NLS-2$
+ System.out.println("Host#getLinuxRelease: reading file: " + etcdir + "/" + entry); //$NON-NLS-1$ //$NON-NLS-2$
}
BufferedReader reader = null;
@@ -108,7 +108,7 @@ public final class Host {
while (firstLine != null && !firstLine.toUpperCase()
.startsWith("DISTRIB_DESCRIPTION")) { //$NON-NLS-1$
if (Boolean.getBoolean("shell.debug")) { //$NON-NLS-1$
- System.out.println("UtilityEnvironment#getLinuxRelease: firstLine='" + firstLine + "'"); //$NON-NLS-1$ //$NON-NLS-2$
+ System.out.println("Host#getLinuxRelease: firstLine='" + firstLine + "'"); //$NON-NLS-1$ //$NON-NLS-2$
}
firstLine = reader.readLine();
}
@@ -135,7 +135,7 @@ public final class Host {
firstLine = firstLine != null ? firstLine : "Unknown"; //$NON-NLS-1$
if (Boolean.getBoolean("shell.debug")) { //$NON-NLS-1$
- System.out.println("UtilityEnvironment#getLinuxRelease: return value='" + firstLine + "'"); //$NON-NLS-1$ //$NON-NLS-2$
+ System.out.println("Host#getLinuxRelease: return value='" + firstLine + "'"); //$NON-NLS-1$ //$NON-NLS-2$
}
return firstLine;

Back to the top