Skip to content
Snippets Groups Projects
Commit fc7972eb authored by Philipp Spohr's avatar Philipp Spohr
Browse files

Compile error

parent 961a991b
No related branches found
No related tags found
No related merge requests found
...@@ -117,7 +117,6 @@ ...@@ -117,7 +117,6 @@
<groupId>org.ops4j.pax.logging</groupId> <groupId>org.ops4j.pax.logging</groupId>
<artifactId>pax-logging-api</artifactId> <artifactId>pax-logging-api</artifactId>
<version>1.5.2</version> <version>1.5.2</version>
<scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.cytoscape</groupId> <groupId>org.cytoscape</groupId>
......
...@@ -8,6 +8,10 @@ public class YoshikoLogger { ...@@ -8,6 +8,10 @@ public class YoshikoLogger {
//SINGLETON TEMPLATE// //SINGLETON TEMPLATE//
private static YoshikoLogger instance; private static YoshikoLogger instance;
private YoshikoLogger() {}; private YoshikoLogger() {};
private Logger logger;
public static YoshikoLogger getInstance() { public static YoshikoLogger getInstance() {
if (instance == null) { if (instance == null) {
instance = new YoshikoLogger(); instance = new YoshikoLogger();
...@@ -15,7 +19,6 @@ public class YoshikoLogger { ...@@ -15,7 +19,6 @@ public class YoshikoLogger {
return instance; return instance;
} }
private Logger logger;
public Logger getLogger() { public Logger getLogger() {
if (logger == null) { if (logger == null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment