mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Removed warnings.
Set Visibility of nested class to protected to help our friends in zOS.
This commit is contained in:
parent
c683a357d4
commit
6b4de43eeb
1 changed files with 4 additions and 4 deletions
|
@ -482,12 +482,12 @@ public class SelectionParseAction extends Action {
|
|||
break;
|
||||
}
|
||||
case 'n': { // start of "new"
|
||||
while (doc.getChar(++index) != 'w');
|
||||
while (doc.getChar(++index) != 'w') {}
|
||||
possibleEnd=++index;
|
||||
break;
|
||||
}
|
||||
case 'd': { // start of "delete"
|
||||
while (doc.getChar(++index) != 't' && doc.getChar(index+1) != 'e');
|
||||
while (doc.getChar(++index) != 't' && doc.getChar(index+1) != 'e'){}
|
||||
index+=2;
|
||||
possibleEnd=index;
|
||||
break;
|
||||
|
@ -536,7 +536,7 @@ public class SelectionParseAction extends Action {
|
|||
return sel;
|
||||
}
|
||||
|
||||
class SelSearchNode{
|
||||
protected class SelSearchNode{
|
||||
protected String selText;
|
||||
protected int selStart;
|
||||
protected int selEnd;
|
||||
|
@ -635,7 +635,7 @@ public class SelectionParseAction extends Action {
|
|||
} else if (locatable instanceof ILineLocatable){
|
||||
int tempstartOffset = ((ILineLocatable)locatable).getStartLine();
|
||||
|
||||
IDocument doc = ((AbstractTextEditor) part).getDocumentProvider().getDocument(part.getEditorInput());;
|
||||
IDocument doc = ((AbstractTextEditor) part).getDocumentProvider().getDocument(part.getEditorInput());
|
||||
try {
|
||||
//NOTE: Subtract 1 from the passed in line number because, even though the editor is 1 based, the line
|
||||
//resolver doesn't take this into account and is still 0 based
|
||||
|
|
Loading…
Add table
Reference in a new issue