This commit is contained in:
Karup 2016-11-12 22:55:54 +05:30 committed by karuppayya
parent 5cfed2a7b8
commit 42dde76080
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ public class RemoteEventClient implements RemoteEventClientWrapper {
@Override
public void onMetaInfosReceived(Map<String, String> infos) {
client.onMetaInfodReceived(infos);
client.onMetaInfosReceived(infos);
}
}

View file

@ -279,7 +279,7 @@ public class RemoteInterpreterEventClient implements ResourcePoolConnector {
gson.toJson(appendOutput)));
}
public void onMetaInfodReceived(Map<String, String> infos) {
public void onMetaInfosReceived(Map<String, String> infos) {
sendEvent(new RemoteInterpreterEvent(RemoteInterpreterEventType.META_INFOS,
gson.toJson(infos)));
}