[Fb-contrib-commit] SF.net SVN: fb-contrib:[1341] trunk/fb-contrib/etc/messages.xml
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2009-09-29 03:59:47
|
Revision: 1341
http://fb-contrib.svn.sourceforge.net/fb-contrib/?rev=1341&view=rev
Author: dbrosius
Date: 2009-09-29 03:59:41 +0000 (Tue, 29 Sep 2009)
Log Message:
-----------
em
Modified Paths:
--------------
trunk/fb-contrib/etc/messages.xml
Modified: trunk/fb-contrib/etc/messages.xml
===================================================================
--- trunk/fb-contrib/etc/messages.xml 2009-09-29 03:13:52 UTC (rev 1340)
+++ trunk/fb-contrib/etc/messages.xml 2009-09-29 03:59:41 UTC (rev 1341)
@@ -111,7 +111,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.ClassEnvy">
<Details>
<![CDATA[
- <p><b>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</b></p>
+ <p><em>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</em></p>
<p> Looks for methods that use a high percentage of methods from another class over it's own
methods. When this is the case, it is often better to implement this method in that other class,
by refactoring the class to accept parameters it needs from the source class.
@@ -702,7 +702,7 @@
<Detector class="com.mebigfatguy.fbcontrib.detect.BloatedAssignmentScope">
<Details>
<![CDATA[
- <p><b>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</b>
+ <p><em>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</em>
Looks for assignments to variables in a scope larger than it's use. As long as the evaluation of the assignment
does not have side effects, the assignment can be moved into the inner scope where it is used.</p>
<p>It is a fast detector.</p>
@@ -1143,7 +1143,7 @@
<LongDescription>method {1} excessively uses methods of another class</LongDescription>
<Details>
<![CDATA[
- <p><b>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</b></p>
+ <p><em>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</em></p>
<p>This method makes extensive use of methods from another class over methods of it's own
class. Typically this means that the functionality that is accomplished by this method
most likely belongs with the class that is being used so liberally. Consider refactoring this
@@ -2016,7 +2016,7 @@
<LongDescription>Method {1} uses non standard math constant</LongDescription>
<Details>
<![CDATA[
- <p>This method defines its own version of <b>PI</b> or <b>e</b> and the value is not as precise as the
+ <p>This method defines its own version of <em>PI</em> or <em>e</em> and the value is not as precise as the
one defined in the constants Math.PI or Math.E. Use these constants instead.</p>
]]>
</Details>
@@ -2229,7 +2229,7 @@
<LongDescription>Method {1} assigns a variable in a larger scope then is needed</LongDescription>
<Details>
<![CDATA[
- <p><b>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</b>
+ <p><em>THIS DETECTOR IS HIGHLY EXPERIMENTAL AND IS LIKELY TO CREATE A LOT OF FUD</em>
This method assigns a value to a variable in an outer scope compared to where the variable is actually used.
Assuming this evaluation does not have side effects, the assignment can be moved into the inner scope (if block)
so that its execution time isn't taken up if the if guard is false. Care should be
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|