Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jemygraw committed May 9, 2018
1 parent 6f55c15 commit 3e497cb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/qiniu/rtc/RtcAppManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public Response getApp(String appId) throws QiniuException {
/**
* @param appId 房间所属帐号的 app
* @return Response 如果不读取Response的数据,请注意调用Close方法关闭
* @throws Exception
* @throws QiniuException
*/
public Response deleteApp(String appId) throws QiniuException {
String urlStr = String.format("%s%s%s", host, "/v3/apps/", appId);
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/qiniu/rtc/RtcRoomManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ public Response listUser(String appId, String roomName) throws QiniuException {
* @param userId 被踢人员
* @return Response 如果不读取Response的数据,请注意调用Close方法关闭
* @throws QiniuException
* @returnjsonString
*/
public Response kickUser(String appId, String roomName, String userId) throws QiniuException {
String urlStr = getLink(appId, roomName, "users/" + userId);
Expand Down

0 comments on commit 3e497cb

Please sign in to comment.