- fix compile issue

This commit is contained in:
Richard Alam 2014-05-07 14:06:58 +00:00
parent 919c76242d
commit 79ce612a19
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ public class OfficeToPdfConversionSuccessFilter {
Gson gson = new Gson();
String updateMsg = gson.toJson(msg);
log.debug("sending: " + updateMsg);
messagingService.send(MessagingConstants.PRESENTATION_CHANNEL, updateMsg);
messagingService.send(MessagingConstants.TO_PRESENTATION_CHANNEL, updateMsg);
} else {
log.warn("MessagingService has not been set!.");
}

View File

@ -65,7 +65,7 @@ public class SupportedDocumentFilter {
Gson gson= new Gson();
String updateMsg=gson.toJson(builder.build().getMessage());
log.debug("sending: "+updateMsg);
messagingService.send(MessagingConstants.PRESENTATION_CHANNEL, updateMsg);
messagingService.send(MessagingConstants.TO_PRESENTATION_CHANNEL, updateMsg);
} else {
log.warn("MessagingService has not been set!");
}