1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Fix for 237035: Syntax Coloring Preview and editors don't update

This commit is contained in:
Anton Leherbauer 2008-06-13 11:19:20 +00:00
parent cc494247e8
commit 69ce10e343

View file

@ -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;
}