Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlena Laskavaia2015-02-26 02:36:30 +0000
committerGerrit Code Review @ Eclipse.org2015-02-28 01:17:57 +0000
commitde3c23df86893f5bd0d8ab34cdc93642c484459a (patch)
tree65efc4b19c10a4c9ce97d5eeb0717d9bd0a15659 /codan/org.eclipse.cdt.codan.checkers
parent26a0202bb284b3a2a01a7b9097fbe9f3877ff801 (diff)
downloadorg.eclipse.cdt-de3c23df86893f5bd0d8ab34cdc93642c484459a.tar.gz
org.eclipse.cdt-de3c23df86893f5bd0d8ab34cdc93642c484459a.tar.xz
org.eclipse.cdt-de3c23df86893f5bd0d8ab34cdc93642c484459a.zip
adjusted message for comment checker
Diffstat (limited to 'codan/org.eclipse.cdt.codan.checkers')
-rw-r--r--codan/org.eclipse.cdt.codan.checkers/plugin.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/codan/org.eclipse.cdt.codan.checkers/plugin.xml b/codan/org.eclipse.cdt.codan.checkers/plugin.xml
index 982aad53851..b4b1e025c35 100644
--- a/codan/org.eclipse.cdt.codan.checkers/plugin.xml
+++ b/codan/org.eclipse.cdt.codan.checkers/plugin.xml
@@ -409,9 +409,9 @@
description="This rule will flag usage of // style comments. Only applicable for C code, not C++"
id="org.eclipse.cdt.codan.checkers.nolinecomment"
markerType="org.eclipse.cdt.codan.core.codanProblem"
- messagePattern="Line comments are not allowed"
+ messagePattern="Line comments ''//'' are not allowed"
multiple="false"
- name="Line comments // are not allowed">
+ name="Line comments">
</problem>
<problem
category="org.eclipse.cdt.codan.core.categories.CodeStyle"
@@ -420,8 +420,8 @@
description="This rule will flag usage of /* inside another comment."
id="org.eclipse.cdt.codan.checkers.nocommentinside"
markerType="org.eclipse.cdt.codan.core.codanProblem"
- messagePattern="Sequence /* used inside the comment"
- name="No nesting comments">
+ messagePattern="Sequence ''/*'' used inside the comment"
+ name="Nesting comments">
</problem>
</checker>
</extension>

Back to the top