Skip to content

Commit

Permalink
Fixed merging error
Browse files Browse the repository at this point in the history
  • Loading branch information
alex9849 committed Feb 8, 2024
1 parent 00aa156 commit 69393bf
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
*/
public class DefaultRuntimeRegistry implements RuntimeRegistry {

private static final Logger logger = LoggerFactory.getLogger(this.getClass());
private static final Logger logger = LoggerFactory.getLogger(DefaultRuntimeRegistry.class);
private Runtime runtime;
private final Map<String, IO> instances;
private final Set<Integer> usedAddresses;
Expand Down Expand Up @@ -172,7 +172,6 @@ public synchronized boolean exists(int address) {
}

/** {@inheritDoc} */
@Override
public synchronized boolean exists(String id, Class<? extends IO> type){
String _id = null;
try {
Expand Down

0 comments on commit 69393bf

Please sign in to comment.