Skip to content

Commit 42489bc

Browse files
author
Igor Polevoy
committed
#255 Implement Command XML serialization in JavaLite Async - execute() needs to be public to write mocks
1 parent 8560521 commit 42489bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javalite-async/src/main/java/org/javalite/async/CommandListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void onMessage(Message message) {
3939
}
4040
}
4141

42-
protected <T extends Command> void onCommand(T command) {
42+
public <T extends Command> void onCommand(T command) {
4343
if(injector != null){
4444
injector.injectMembers(command);
4545
}

0 commit comments

Comments
 (0)