Skip to content

Commit

Permalink
Change the name on the generics.
Browse files Browse the repository at this point in the history
  • Loading branch information
datumbox committed Dec 24, 2016
1 parent 31b7956 commit bc1370d
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -39,10 +39,10 @@
*
* @author Vasilis Vryniotis <bbriniotis@datumbox.com>
*/
public abstract class AbstractStorageEngine<DC extends StorageConfiguration> implements StorageEngine {
public abstract class AbstractStorageEngine<SC extends StorageConfiguration> implements StorageEngine {

protected String storageName;
protected final DC storageConfiguration;
protected final SC storageConfiguration;

/**
* Logger for all Storage Engines.
Expand All @@ -59,7 +59,7 @@ public abstract class AbstractStorageEngine<DC extends StorageConfiguration> imp
* @param storageName
* @param storageConfiguration
*/
protected AbstractStorageEngine(String storageName, DC storageConfiguration) {
protected AbstractStorageEngine(String storageName, SC storageConfiguration) {
this.storageName = storageName;
this.storageConfiguration = storageConfiguration;

Expand Down

0 comments on commit bc1370d

Please sign in to comment.