1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Change the scope of the methods to be protected.

This commit is contained in:
Alain Magloire 2004-01-28 21:04:09 +00:00
parent 12ac7e97c7
commit b1dd76df72

View file

@ -16,8 +16,8 @@ import java.util.List;
*/ */
public class MIInfoThreadsInfo extends MIInfo { public class MIInfoThreadsInfo extends MIInfo {
int[] threadIds; protected int[] threadIds;
int currentThreadId; protected int currentThreadId;
public MIInfoThreadsInfo(MIOutput out) { public MIInfoThreadsInfo(MIOutput out) {
super(out); super(out);
@ -32,7 +32,7 @@ public class MIInfoThreadsInfo extends MIInfo {
return currentThreadId; return currentThreadId;
} }
void parse() { protected void parse() {
List aList = new ArrayList(); List aList = new ArrayList();
if (isDone()) { if (isDone()) {
MIOutput out = getMIOutput(); 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) { if (str.length() > 0) {
boolean isCurrentThread = false; boolean isCurrentThread = false;
// Discover the current thread // Discover the current thread