1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2010-08-21 20:32:00 +00:00
parent 5faa4da90e
commit 393c776410
2 changed files with 6 additions and 6 deletions

View file

@ -65,7 +65,7 @@ public final class ASTProvider {
/**
* Wait flag indicating that a client requesting an AST
* wants to wait until an AST is ready. If the translation unit is not open no ast will
* wants to wait until an AST is ready. If the translation unit is not open no AST will
* be provided.
* <p>
* If not yet cached and if the translation unit is open, an AST will be created by
@ -77,7 +77,7 @@ public final class ASTProvider {
/**
* Wait flag indicating that a client requesting an AST
* only wants to wait for the shared AST of the active editor.
* If the translation unit is not open no ast will be provided.
* If the translation unit is not open no AST will be provided.
* <p>
* No AST will be created by the AST provider.
* </p>
@ -201,7 +201,7 @@ public final class ASTProvider {
}
private boolean isActiveEditor(IWorkbenchPart part) {
return part != null && (part == fActiveEditor);
return part != null && part == fActiveEditor;
}
private boolean isCEditor(IWorkbenchPartReference ref) {
@ -324,13 +324,13 @@ public final class ASTProvider {
if (cElement == null)
return;
Assert.isTrue(cElement instanceof ITranslationUnit);
fCache.reconciled(ast, (ITranslationUnit)cElement);
fCache.reconciled(ast, (ITranslationUnit) cElement);
}
public IStatus runOnAST(ICElement cElement, WAIT_FLAG waitFlag, IProgressMonitor monitor,
ASTCache.ASTRunnable astRunnable) {
Assert.isTrue(cElement instanceof ITranslationUnit);
final ITranslationUnit tu = (ITranslationUnit)cElement;
final ITranslationUnit tu = (ITranslationUnit) cElement;
if (!tu.isOpen())
return Status.CANCEL_STATUS;

View file

@ -333,7 +333,7 @@ public class DefaultMultilineCommentAutoEditStrategy implements IAutoEditStrateg
StringBuilder result= new StringBuilder();
BufferedReader br= new BufferedReader(new StringReader(buffer.toString()));
try {
for(String line= br.readLine(); line != null; line= br.readLine()) {
for (String line= br.readLine(); line != null; line= br.readLine()) {
result.append(indent).append(line).append(lineDelim);
}
} catch(IOException ioe) {