]> source.dussan.org Git - sonarqube.git/commitdiff
Fix some quality flaws
authorSimon Brandhof <simon.brandhof@gmail.com>
Tue, 23 Oct 2012 09:42:42 +0000 (11:42 +0200)
committerSimon Brandhof <simon.brandhof@gmail.com>
Tue, 23 Oct 2012 09:42:42 +0000 (11:42 +0200)
sonar-channel/src/main/java/org/sonar/channel/ChannelDispatcher.java
sonar-plugin-api/src/main/java/org/sonar/api/utils/KeyValue.java

index 57378283de34ea98abc11815ccf56bfec99557be..f338eadf61fc633b3e37ea0180f6496103c0c771 100644 (file)
@@ -133,8 +133,8 @@ public class ChannelDispatcher<O> extends Channel<O> {
       return this;
     }
 
-    public <OUTPUT> ChannelDispatcher<OUTPUT> build() {
-      return new ChannelDispatcher<OUTPUT>(this);
+    public <O> ChannelDispatcher<O> build() {
+      return new ChannelDispatcher<O>(this);
     }
 
   }
index 64f8242a7236293c3ece4a11d185e128ac62596b..6f4c4727ae977679e216068ebf9635fb2ba184e0 100644 (file)
@@ -24,15 +24,15 @@ package org.sonar.api.utils;
  *
  * @since 1.10
  */
-public class KeyValue<KEY, VALUE> {
+public class KeyValue<K, V> {
 
-  private KEY key;
-  private VALUE value;
+  private K key;
+  private V value;
 
   /**
    * Creates a key / value object
    */
-  public KeyValue(KEY key, VALUE value) {
+  public KeyValue(K key, V value) {
     super();
     this.key = key;
     this.value = value;
@@ -41,7 +41,7 @@ public class KeyValue<KEY, VALUE> {
   /**
    * @return the key of the couple
    */
-  public KEY getKey() {
+  public K getKey() {
     return key;
   }
 
@@ -50,7 +50,7 @@ public class KeyValue<KEY, VALUE> {
    *
    * @param key the key
    */
-  public void setKey(KEY key) {
+  public void setKey(K key) {
     this.key = key;
   }
 
@@ -58,14 +58,14 @@ public class KeyValue<KEY, VALUE> {
    *
    * @return the value of the couple
    */
-  public VALUE getValue() {
+  public V getValue() {
     return value;
   }
 
   /**
    * Sets the value of the couple
    */
-  public void setValue(VALUE value) {
+  public void setValue(V value) {
     this.value = value;
   }