Consistently use tabs rather than spaces
Update code that has accidentally used spaces instead of tabs. Also remove all trailing whitespace. Issue: SPR-16968
This commit is contained in:
committed by
Juergen Hoeller
parent
be85bd8e09
commit
5cedd0d5d4
@@ -56,7 +56,7 @@ public abstract class CciDaoSupport extends DaoSupport {
|
||||
*/
|
||||
public final void setConnectionFactory(ConnectionFactory connectionFactory) {
|
||||
if (this.cciTemplate == null || connectionFactory != this.cciTemplate.getConnectionFactory()) {
|
||||
this.cciTemplate = createCciTemplate(connectionFactory);
|
||||
this.cciTemplate = createCciTemplate(connectionFactory);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -95,7 +95,7 @@ public abstract class CciDaoSupport extends DaoSupport {
|
||||
*/
|
||||
@Nullable
|
||||
public final CciTemplate getCciTemplate() {
|
||||
return this.cciTemplate;
|
||||
return this.cciTemplate;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user