aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorsimonbrandhof <simon.brandhof@gmail.com>2011-05-26 08:33:18 +0200
committersimonbrandhof <simon.brandhof@gmail.com>2011-05-26 08:33:18 +0200
commit235d3e745d68bf549ce0c5353d76f936572f7c93 (patch)
tree0fffba766cbfb8f18d325685881a323e3cf5516d /plugins
parent27b6358cba309925505e09f4d44d3157435bf096 (diff)
downloadsonarqube-235d3e745d68bf549ce0c5353d76f936572f7c93.tar.gz
sonarqube-235d3e745d68bf549ce0c5353d76f936572f7c93.zip
SONAR-2469 fix typo in name of InstantiationStrategy class
Diffstat (limited to 'plugins')
-rw-r--r--plugins/sonar-squid-java-plugin/src/main/java/org/sonar/java/bytecode/check/UnusedPrivateMethodCheck.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-squid-java-plugin/src/main/java/org/sonar/java/bytecode/check/UnusedPrivateMethodCheck.java b/plugins/sonar-squid-java-plugin/src/main/java/org/sonar/java/bytecode/check/UnusedPrivateMethodCheck.java
index f91fb6da9d7..6f4216d8b4d 100644
--- a/plugins/sonar-squid-java-plugin/src/main/java/org/sonar/java/bytecode/check/UnusedPrivateMethodCheck.java
+++ b/plugins/sonar-squid-java-plugin/src/main/java/org/sonar/java/bytecode/check/UnusedPrivateMethodCheck.java
@@ -33,7 +33,7 @@ import org.sonar.squid.api.SourceMethod;
"This helps in maintenance by decreasing the maintained code size, " +
"making it easier to understand the program and preventing bugs from being introduced.</p>" +
"<p>In the following two cases, private methods are not considered as dead code by Sonar :</p>" +
- "<ul><li>Private empty constructors that are intentionally used to prevent any direct instanciation of a class.</li>" +
+ "<ul><li>Private empty constructors that are intentionally used to prevent any direct instantiation of a class.</li>" +
"<li>Private methods : readObject(...), writeObject(...), writeReplace(...), readResolve(...) " +
"which can contractually be used when implementing the Serializable interface.</li></ul>")
public class UnusedPrivateMethodCheck extends BytecodeCheck {