Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java')
-rw-r--r--core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java
index 259a59976fc..f2701f6bf50 100644
--- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java
+++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/text/CSourceViewerConfiguration.java
@@ -310,7 +310,7 @@ public class CSourceViewerConfiguration extends TextSourceViewerConfiguration {
*
* @return the C multi-line comment scanner
*/
- protected ICTokenScanner getMultilineCommentScanner() {
+ private ICTokenScanner getMultilineCommentScanner() {
return fMultilineCommentScanner;
}
@@ -319,7 +319,7 @@ public class CSourceViewerConfiguration extends TextSourceViewerConfiguration {
*
* @return the C single-line comment scanner
*/
- protected ICTokenScanner getSinglelineCommentScanner() {
+ private ICTokenScanner getSinglelineCommentScanner() {
return fSinglelineCommentScanner;
}

Back to the top