Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

Commit

Permalink
Removed final modifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
mab committed Oct 29, 2013
1 parent 3226c52 commit 160eef8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/org/dbunit/dataset/builder/DataSetBuilder.java
Expand Up @@ -52,8 +52,8 @@ public IDataSet build() throws DataSetException {
}

public void addDataSet(final IDataSet dataSet) throws DataSetException {
final IDataSet[] dataSets = { build(), dataSet };
final CompositeDataSet composite = new CompositeDataSet(dataSets);
IDataSet[] dataSets = { build(), dataSet };
CompositeDataSet composite = new CompositeDataSet(dataSets);
this.dataSet = new CachedDataSet(composite);
consumer = new BufferedConsumer(this.dataSet);
}
Expand Down

0 comments on commit 160eef8

Please sign in to comment.