From b1dd76df720957645493848713b9fc75ba2cf6cd Mon Sep 17 00:00:00 2001 From: Alain Magloire Date: Wed, 28 Jan 2004 21:04:09 +0000 Subject: [PATCH] Change the scope of the methods to be protected. --- .../cdt/debug/mi/core/output/MIInfoThreadsInfo.java | 8 ++++---- 1 file 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