Removed commented out code from color settings.

When we implement actual highlighting for KDoc highlighting, returning these lines would be easy.
This commit is contained in:
Evgeny Gerashchenko
2013-04-03 20:36:20 +04:00
parent f53af70ad6
commit 3c31620f5a
3 changed files with 0 additions and 22 deletions
@@ -96,9 +96,6 @@ options.jet.attribute.descriptor.closure.braces=Function literal braces and arro
options.jet.attribute.descriptor.safe.access=Safe access dot
options.jet.attribute.descriptor.arrow=Arrow
options.jet.attribute.descriptor.kdoc.comment=KDoc comment
options.jet.attribute.descriptor.kdoc.tag=KDoc tag
options.jet.attribute.descriptor.kdoc.tag.value=KDoc tag value
options.jet.attribute.descriptor.kdoc.markup=KDoc markup
options.jet.attribute.descriptor.trait=Trait
options.jet.attribute.descriptor.annotation=Annotation
options.jet.attribute.descriptor.var=Var (mutable variable, parameter or property)
@@ -125,11 +125,7 @@ public class JetColorSettingsPage implements ColorSettingsPage {
new AttributesDescriptor(OptionsBundle.message("options.java.attribute.descriptor.line.comment"), JetHighlightingColors.LINE_COMMENT),
new AttributesDescriptor(OptionsBundle.message("options.java.attribute.descriptor.block.comment"), JetHighlightingColors.BLOCK_COMMENT),
// KDoc highlighting options are temporarily disabled, until actual highlighting and parsing of them is implemented
new AttributesDescriptor(JetBundle.message("options.jet.attribute.descriptor.kdoc.comment"), JetHighlightingColors.DOC_COMMENT),
//new AttributesDescriptor(JetBundle.message("options.jet.attribute.descriptor.kdoc.tag"), JetHighlightingColors.DOC_COMMENT_TAG),
//new AttributesDescriptor(JetBundle.message("options.jet.attribute.descriptor.kdoc.tag.value"), JetHighlightingColors.DOC_COMMENT_TAG_VALUE),
//new AttributesDescriptor(JetBundle.message("options.jet.attribute.descriptor.kdoc.markup"), JetHighlightingColors.DOC_COMMENT_MARKUP),
new AttributesDescriptor(OptionsBundle.message("options.java.attribute.descriptor.class"), JetHighlightingColors.CLASS),
new AttributesDescriptor(OptionsBundle.message("options.java.attribute.descriptor.type.parameter"), JetHighlightingColors.TYPE_PARAMETER),
@@ -121,21 +121,6 @@ public class JetHighlightingColors {
SyntaxHighlighterColors.DOC_COMMENT.getDefaultAttributes()
);
public static final TextAttributesKey DOC_COMMENT_TAG = TextAttributesKey.createTextAttributesKey(
"KOTLIN_DOC_COMMENT_TAG",
SyntaxHighlighterColors.DOC_COMMENT_TAG.getDefaultAttributes()
);
public static final TextAttributesKey DOC_COMMENT_TAG_VALUE = TextAttributesKey.createTextAttributesKey(
"KOTLIN_DOC_COMMENT_TAG_VALUE",
CodeInsightColors.DOC_COMMENT_TAG_VALUE.getDefaultAttributes()
);
public static final TextAttributesKey DOC_COMMENT_MARKUP = TextAttributesKey.createTextAttributesKey(
"KOTLIN_DOC_COMMENT_MARKUP",
SyntaxHighlighterColors.DOC_COMMENT_MARKUP.getDefaultAttributes()
);
public static final TextAttributesKey CLASS = TextAttributesKey.createTextAttributesKey(
"KOTLIN_CLASS",
CodeInsightColors.CLASS_NAME_ATTRIBUTES.getDefaultAttributes()