Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlain Magloire2004-01-28 21:04:09 +0000
committerAlain Magloire2004-01-28 21:04:09 +0000
commitb1dd76df720957645493848713b9fc75ba2cf6cd (patch)
treec108dd8326fa4e3d942e27ab76c39414ca391e2f
parent12ac7e97c79558d7165e637b942132955d9fbe54 (diff)
downloadorg.eclipse.cdt-b1dd76df720957645493848713b9fc75ba2cf6cd.tar.gz
org.eclipse.cdt-b1dd76df720957645493848713b9fc75ba2cf6cd.tar.xz
org.eclipse.cdt-b1dd76df720957645493848713b9fc75ba2cf6cd.zip
Change the scope of the methods to be protected.
-rw-r--r--debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIInfoThreadsInfo.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIInfoThreadsInfo.java b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIInfoThreadsInfo.java
index 50a4dd74535..c10b6c3a61e 100644
--- a/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIInfoThreadsInfo.java
+++ b/debug/org.eclipse.cdt.debug.mi.core/src/org/eclipse/cdt/debug/mi/core/output/MIInfoThreadsInfo.java
@@ -16,8 +16,8 @@ import java.util.List;
*/
public class MIInfoThreadsInfo extends MIInfo {
- int[] threadIds;
- int currentThreadId;
+ protected int[] threadIds;
+ protected int currentThreadId;
public MIInfoThreadsInfo(MIOutput out) {
super(out);
@@ -32,7 +32,7 @@ public class MIInfoThreadsInfo extends MIInfo {
return currentThreadId;
}
- void parse() {
+ protected void parse() {
List aList = new ArrayList();
if (isDone()) {
MIOutput out = getMIOutput();
@@ -52,7 +52,7 @@ public class MIInfoThreadsInfo extends MIInfo {
}
}
- void parseThreadInfo(String str, List aList) {
+ protected void parseThreadInfo(String str, List aList) {
if (str.length() > 0) {
boolean isCurrentThread = false;
// Discover the current thread

Back to the top