Skip to content

Commit d5b47d9

Browse files
committed
More refactoring Feedback issues nearly solved. Fixed tests
1 parent fa91087 commit d5b47d9

19 files changed

+1100
-1335
lines changed

src/main/java/jcs/JCS.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
import javax.swing.UIManager;
3838
import javax.swing.UnsupportedLookAndFeelException;
3939
import jcs.commandStation.JCSCommandStation;
40-
import jcs.commandStation.JCSCommandStationImpl;
4140
import jcs.commandStation.events.PowerEvent;
4241
import jcs.commandStation.events.PowerEventListener;
4342
import jcs.persistence.PersistenceFactory;
@@ -97,7 +96,7 @@ public static PersistenceService getPersistenceService() {
9796
public static JCSCommandStation getJcsCommandStation() {
9897
if (jcsCommandStation == null) {
9998
if (getPersistenceService() != null) {
100-
jcsCommandStation = new JCSCommandStationImpl();
99+
jcsCommandStation = new JCSCommandStation();
101100
} else {
102101
Logger.error("Can't obtain the persistent store!");
103102
}

0 commit comments

Comments
 (0)