mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
Change the scope of the methods to be protected.
This commit is contained in:
parent
12ac7e97c7
commit
b1dd76df72
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue