Index: remoting/webapp/crd/js/wcs.js |
diff --git a/remoting/webapp/crd/js/wcs.js b/remoting/webapp/crd/js/wcs.js |
index a019c1b304e3ff9fa1f15f75764a149eedbc5724..2e72af08460029cf7e10df9c133e41202eec91d0 100644 |
--- a/remoting/webapp/crd/js/wcs.js |
+++ b/remoting/webapp/crd/js/wcs.js |
@@ -25,29 +25,25 @@ remoting.wcs = null; |
remoting.Wcs = function(wcsIqClient, token, onReady) { |
/** |
* The WCS client. |
- * @type {remoting.WcsIqClient} |
- * @private |
+ * @private {remoting.WcsIqClient} |
*/ |
this.wcsIqClient_ = wcsIqClient; |
/** |
* The OAuth2 access token. |
- * @type {string} |
- * @private |
+ * @private {string} |
*/ |
this.token_ = token; |
/** |
* The function called when the WCS client has received a full JID. |
- * @type {?function(string): void} |
- * @private |
+ * @private {?function(string): void} |
*/ |
this.onReady_ = onReady; |
/** |
* The full JID of the WCS client. |
- * @type {string} |
- * @private |
+ * @private {string} |
*/ |
this.clientFullJid_ = ''; |