Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/12/08 11:50:43 (16 years ago)
Author:
gkronber
Message:

merged changesets r382 and r383 (fix references and compiler warnings) into the "collections" branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Collections/sources/HeuristicLab.Grid/ClientForm.cs

    r252 r384  
    111111        try {
    112112          gotEngine = engineStore.TryTakeEngine(out currentGuid, out engineXml);
    113         } catch(TimeoutException timeoutException) {
     113        } catch(TimeoutException) {
    114114          currentEngine = null;
    115115          currentGuid = Guid.Empty;
     
    117117          fetchOperationTimer.Interval = 5000;
    118118          fetchOperationTimer.Start();
    119         } catch(CommunicationException communicationException) {
     119        } catch(CommunicationException) {
    120120          // connection problem -> reset connection and start the timer again
    121121          ResetConnection();
     
    155155              engineStore.StoreResult(currentGuid, resultXml);
    156156              success = true;
    157             } catch(TimeoutException timeoutException) {
     157            } catch(TimeoutException) {
    158158              success = false;
    159159              retries++;
    160160              Thread.Sleep(TimeSpan.FromSeconds(CONNECTION_RETRY_TIMEOUT_SEC));
    161             } catch(CommunicationException communicationException) {
     161            } catch(CommunicationException) {
    162162              ResetConnection();
    163163              success = false;
Note: See TracChangeset for help on using the changeset viewer.