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