Changeset 22339 in vbox
- Timestamp:
- Aug 19, 2009 10:29:37 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/glue-jaxws.xsl
r22142 r22339 759 759 public void disconnect(IVirtualBox refIVirtualBox) 760 760 { 761 logoff(refIVirtualBox); 762 pool.releasePort(this.port); 761 try { 762 logoff(refIVirtualBox); 763 } finally { 764 if (this.port != null) { 765 pool.releasePort(this.port); 766 this.port = null; 767 } 768 } 763 769 } 764 770
Note:
See TracChangeset
for help on using the changeset viewer.