aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-scanner-protocol/src
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2018-10-17 22:45:41 +0200
committerSonarTech <sonartech@sonarsource.com>2018-10-18 20:20:55 +0200
commitbee3ce3d74bc9143c56a3aeb68dcbb4ba3d06513 (patch)
tree3fc42d200fe28fe12a9934ba72c3505bf1f6cf6d /sonar-scanner-protocol/src
parent36d1270ef32ec03387908867ff4cf4e3e1164d14 (diff)
downloadsonarqube-bee3ce3d74bc9143c56a3aeb68dcbb4ba3d06513.tar.gz
sonarqube-bee3ce3d74bc9143c56a3aeb68dcbb4ba3d06513.zip
Fix bugs, mainly about type casts
Diffstat (limited to 'sonar-scanner-protocol/src')
-rw-r--r--sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/viewer/TextLineNumber.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/viewer/TextLineNumber.java b/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/viewer/TextLineNumber.java
index 050dd457503..14f4ec833ee 100644
--- a/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/viewer/TextLineNumber.java
+++ b/sonar-scanner-protocol/src/main/java/org/sonar/scanner/protocol/viewer/TextLineNumber.java
@@ -197,7 +197,6 @@ public class TextLineNumber extends JPanel implements CaretListener, DocumentLis
* <li>TextLineNumber.CENTER
* <li>TextLineNumber.RIGHT (default)
* </ul>
- * @param currentLineForeground the Color used to render the current line
*/
public void setDigitAlignment(float digitAlignment) {
this.digitAlignment = digitAlignment > 1.0f ? 1.0f : digitAlignment < 0.0f ? -1.0f : digitAlignment;