Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
YoshikoWrapper
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Philipp Spohr
YoshikoWrapper
Commits
fc7972eb
Commit
fc7972eb
authored
7 years ago
by
Philipp Spohr
Browse files
Options
Downloads
Patches
Plain Diff
Compile error
parent
961a991b
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pom.xml
+0
-1
0 additions, 1 deletion
pom.xml
src/main/java/de/hhu/ba/yoshikoWrapper/logging/YoshikoLogger.java
+5
-2
5 additions, 2 deletions
.../java/de/hhu/ba/yoshikoWrapper/logging/YoshikoLogger.java
with
5 additions
and
3 deletions
pom.xml
+
0
−
1
View file @
fc7972eb
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
src/main/java/de/hhu/ba/yoshikoWrapper/logging/YoshikoLogger.java
+
5
−
2
View file @
fc7972eb
...
@@ -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
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment