- Timestamp:
- 12/10/08 14:48:49 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Communication/WcfService.cs
r932 r944 58 58 59 59 public void Connect(String serverIP, int serverPort) { 60 if( !(this.ServerIP == serverIP) && !(this.ServerPort == ServerPort))60 if(this.ServerIP != serverIP || this.ServerPort != ServerPort) 61 61 ServerChanged(this, new EventArgs()); 62 62 this.ServerIP = serverIP; 63 this.ServerPort = serverPort; 63 this.ServerPort = serverPort; 64 64 Connect(); 65 65 }
Note: See TracChangeset
for help on using the changeset viewer.