View | Details | Raw Unified | Return to bug 190803 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/rse/services/dstore/AbstractDStoreService.java (-3 / +3 lines)
Lines 102-108 Link Here
102
			}
102
			}
103
			catch (Exception e)
103
			catch (Exception e)
104
			{			
104
			{			
105
				e.printStackTrace();
105
				//e.printStackTrace();
106
			}			
106
			}			
107
		}
107
		}
108
		else
108
		else
Lines 155-161 Link Here
155
			}
155
			}
156
			catch (Exception e)
156
			catch (Exception e)
157
			{				
157
			{				
158
				e.printStackTrace();
158
				//e.printStackTrace();
159
			}			
159
			}			
160
		}
160
		}
161
		return new DataElement[0];
161
		return new DataElement[0];
Lines 252-258 Link Here
252
			}
252
			}
253
			catch (InterruptedException e)
253
			catch (InterruptedException e)
254
			{
254
			{
255
				e.printStackTrace();
255
				//e.printStackTrace();
256
			}
256
			}
257
			
257
			
258
			getMinerElement();
258
			getMinerElement();
(-)src/org/eclipse/rse/internal/services/dstore/files/DStoreFileService.java (-1 / +1 lines)
Lines 679-685 Link Here
679
			}
679
			}
680
			catch (InterruptedException e)
680
			catch (InterruptedException e)
681
			{
681
			{
682
				e.printStackTrace();
682
				//e.printStackTrace();
683
			}
683
			}
684
684
685
			//getStatusMonitor(ds).waitForUpdate(status, monitor);
685
			//getStatusMonitor(ds).waitForUpdate(status, monitor);
(-)src/org/eclipse/rse/internal/services/dstore/processes/DStoreProcessService.java (-1 / +1 lines)
Lines 304-310 Link Here
304
			}
304
			}
305
			catch (InterruptedException e)
305
			catch (InterruptedException e)
306
			{
306
			{
307
				e.printStackTrace();
307
				//e.printStackTrace();
308
			}
308
			}
309
			getMinerElement();
309
			getMinerElement();
310
		}
310
		}
(-)src/org/eclipse/rse/services/dstore/util/DStoreStatusMonitor.java (-1 lines)
Lines 382-388 Link Here
382
		}
382
		}
383
		catch (InterruptedException e)
383
		catch (InterruptedException e)
384
		{
384
		{
385
			e.printStackTrace();
386
			return;
385
			return;
387
		}
386
		}
388
	}
387
	}
(-)src/org/eclipse/rse/internal/services/dstore/shells/DStoreShellService.java (-1 / +1 lines)
Lines 151-157 Link Here
151
			}
151
			}
152
			catch (InterruptedException e)
152
			catch (InterruptedException e)
153
			{
153
			{
154
				e.printStackTrace();
154
				//e.printStackTrace();
155
			}
155
			}
156
			getMinerElement(getEnvSystemMinerId());
156
			getMinerElement(getEnvSystemMinerId());
157
		}
157
		}

Return to bug 190803