Sonar: self-assignment

This commit is contained in:
Mark Fisher
2011-12-19 16:14:35 -05:00
parent de47b50494
commit 267ff634ec
2 changed files with 2 additions and 2 deletions

View File

@@ -280,7 +280,7 @@ public class AmqpChannelFactoryBean extends AbstractFactoryBean<AbstractAmqpChan
}
public void setTxSize(int txSize) {
this.txSize = this.txSize;
this.txSize = txSize;
}
@Override

View File

@@ -60,7 +60,7 @@ public class MarshallingWebServiceInboundGateway extends AbstractWebServiceInbou
Assert.isInstanceOf(Unmarshaller.class, marshaller, "When using this constructor the provided " +
"Marshaller must also implement Unmarshaller");
this.marshaller = marshaller;
this.unmarshaller = unmarshaller;
this.unmarshaller = (Unmarshaller) marshaller;
}
/**