Skip to content

Commit

Permalink
java.lang.IllegalAccessError when running inside JBoss modules #32
Browse files Browse the repository at this point in the history
  • Loading branch information
atomashpolskiy committed Aug 11, 2017
1 parent 2440e45 commit f768bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.Collection;
import java.util.Collections;

abstract class UniqueMessageHandler<T extends Message> extends BaseMessageHandler<T> {
public abstract class UniqueMessageHandler<T extends Message> extends BaseMessageHandler<T> {

private Class<T> type;
private Collection<Class<? extends T>> supportedTypes;
Expand Down
2 changes: 1 addition & 1 deletion bt-dht/bt-dht/src/main/java/bt/dht/MldhtService.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

class MldhtService implements DHTService {
public class MldhtService implements DHTService {

private static final Logger LOGGER = LoggerFactory.getLogger(MldhtService.class);
private static final DHTLogger DHT_LOGGER = createLogger();
Expand Down

0 comments on commit f768bc4

Please sign in to comment.