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

Merge branch 'master' into sd90

This commit is contained in:
Andrew Gvozdev 2011-07-21 10:03:07 -04:00
commit 728e669707
7 changed files with 16 additions and 25 deletions

View file

@ -25,8 +25,8 @@ package org.eclipse.cdt.codan.core.model;
*/
public interface ICodanDisposable {
/**
* Disposes of the cache. This method has to be called exactly once during
* the life cycle of the cache.
* Disposes of the object. This method has to be called exactly once during
* the life cycle of the object.
*/
public void dispose();
}

View file

@ -3224,7 +3224,7 @@ public class CEditor extends TextEditor implements ISelectionChangedListener, IC
*
* @since 4.0
*/
private boolean isSemanticHighlightingEnabled() {
protected boolean isSemanticHighlightingEnabled() {
return SemanticHighlightings.isEnabled(getPreferenceStore()) && !(isEnableScalablilityMode() && getPreferenceStore().getBoolean(PreferenceConstants.SCALABILITY_SEMANTIC_HIGHLIGHT));
}

View file

@ -18,7 +18,6 @@ import org.eclipse.ltk.core.refactoring.RefactoringDescriptor;
/**
* @author Emanuel Graf IFS
*
*/
public abstract class CRefactoringContribution extends RefactoringContribution {
@ -36,5 +35,4 @@ public abstract class CRefactoringContribution extends RefactoringContribution {
return super.retrieveArgumentMap(descriptor);
}
}
}

View file

@ -19,10 +19,8 @@ import org.eclipse.cdt.internal.ui.refactoring.CRefactoringContribution;
/**
* @author Emanuel Graf IFS
*
*/
public class ExtractConstantRefactoringContribution extends
CRefactoringContribution {
public class ExtractConstantRefactoringContribution extends CRefactoringContribution {
@SuppressWarnings({ "unchecked", "rawtypes" })
@Override
@ -35,5 +33,4 @@ public class ExtractConstantRefactoringContribution extends
return null;
}
}
}

View file

@ -19,7 +19,6 @@ import org.eclipse.cdt.internal.ui.refactoring.CRefactoringContribution;
/**
* @author Emanuel Graf IFS
*
*/
public class ExtractFunctionRefactoringContribution extends CRefactoringContribution {
@ -33,5 +32,4 @@ public class ExtractFunctionRefactoringContribution extends CRefactoringContribu
return null;
}
}
}

View file

@ -19,7 +19,6 @@ import org.eclipse.cdt.internal.ui.refactoring.CRefactoringContribution;
/**
* @author Emanuel Graf IFS
*
*/
public class HideMethodRefactoringContribution extends CRefactoringContribution {
@ -33,5 +32,4 @@ public class HideMethodRefactoringContribution extends CRefactoringContribution
return null;
}
}
}