Repository: openmeetings
Updated Branches:
  refs/heads/master 2e4f591fc -> 9b53f02a4


[OPENMEETINGS-1714] string concat


Project: http://git-wip-us.apache.org/repos/asf/openmeetings/repo
Commit: http://git-wip-us.apache.org/repos/asf/openmeetings/commit/9b53f02a
Tree: http://git-wip-us.apache.org/repos/asf/openmeetings/tree/9b53f02a
Diff: http://git-wip-us.apache.org/repos/asf/openmeetings/diff/9b53f02a

Branch: refs/heads/master
Commit: 9b53f02a4787170ff30ee61dc44fb96c9f305ce5
Parents: 2e4f591
Author: Maxim Solodovnik <[email protected]>
Authored: Thu Sep 28 17:26:27 2017 +0700
Committer: Maxim Solodovnik <[email protected]>
Committed: Thu Sep 28 17:26:27 2017 +0700

----------------------------------------------------------------------
 .../openmeetings/core/remote/ScopeApplicationAdapter.java    | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/openmeetings/blob/9b53f02a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/ScopeApplicationAdapter.java
----------------------------------------------------------------------
diff --git 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/ScopeApplicationAdapter.java
 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/ScopeApplicationAdapter.java
index 8896ced..a985e0b 100644
--- 
a/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/ScopeApplicationAdapter.java
+++ 
b/openmeetings-core/src/main/java/org/apache/openmeetings/core/remote/ScopeApplicationAdapter.java
@@ -382,7 +382,7 @@ public class ScopeApplicationAdapter extends 
MultiThreadedApplicationAdapter imp
 
        public void roomLeaveByScope(Client c, Long roomId) {
                StreamClient rcl = sessionManager.get(c.getUid());
-               IScope scope = getChildScope("" + roomId);
+               IScope scope = getChildScope(String.valueOf(roomId));
                _log.debug("[roomLeaveByScope] {} {} {} {}", c.getUid(), 
roomId, rcl, scope);
                if (rcl != null && scope != null) {
                        roomLeaveByScope(rcl, scope);
@@ -677,7 +677,7 @@ public class ScopeApplicationAdapter extends 
MultiThreadedApplicationAdapter imp
        }
 
        public void sendToScope(final Long roomId, String method, Object obj) {
-               new MessageSender(getChildScope("" + roomId), method, obj, 
this) {
+               new MessageSender(getChildScope(String.valueOf(roomId)), 
method, obj, this) {
                        @Override
                        public boolean filter(IConnection conn) {
                                StreamClient rcl = 
sessionManager.get(IClientUtil.getId(conn.getClient()));
@@ -900,7 +900,7 @@ public class ScopeApplicationAdapter extends 
MultiThreadedApplicationAdapter imp
                        return;
                }
 
-               recordingService.startRecording(getChildScope("" + 
c.getRoom().getId()), c, true);
+               
recordingService.startRecording(getChildScope(String.valueOf(c.getRoom().getId())),
 c, true);
        }
 
        /**
@@ -910,7 +910,7 @@ public class ScopeApplicationAdapter extends 
MultiThreadedApplicationAdapter imp
         */
        public void 
stopInterviewRecording(org.apache.openmeetings.db.entity.basic.IClient c) {
                _log.debug("-----------  stopInterviewRecording");
-               recordingService.stopRecording(getChildScope("" + 
c.getRoomId()), c);
+               
recordingService.stopRecording(getChildScope(String.valueOf(c.getRoomId())), c);
        }
 
        public void micActivity(boolean active) {

Reply via email to