mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-30 03:33:37 +02:00
[159092] fix to use correct process miner id
This commit is contained in:
parent
c071d5d148
commit
d5efb2aa59
1 changed files with 2 additions and 2 deletions
|
@ -13,6 +13,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API
|
* Martin Oberhuber (Wind River) - [186128] Move IProgressMonitor last in all API
|
||||||
* David McKnight (IBM) - [190803] Canceling a long-running dstore job prints "InterruptedException" to stdout
|
* David McKnight (IBM) - [190803] Canceling a long-running dstore job prints "InterruptedException" to stdout
|
||||||
|
* David McKnight (IBM) - [159092] For to use correct process miner id
|
||||||
********************************************************************************/
|
********************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.services.dstore.processes;
|
package org.eclipse.rse.internal.services.dstore.processes;
|
||||||
|
@ -169,8 +170,7 @@ public class DStoreProcessService extends AbstractProcessService implements IPro
|
||||||
if (_minerElement == null || _minerElement.getDataStore() != getDataStore())
|
if (_minerElement == null || _minerElement.getDataStore() != getDataStore())
|
||||||
{
|
{
|
||||||
_minerElement = getDataStore()
|
_minerElement = getDataStore()
|
||||||
.findMinerInformation(
|
.findMinerInformation(UniversalProcessMiner.MINER_ID); //$NON-NLS-1$
|
||||||
"org.eclipse.rse.dstore.universal.miners.processes.UniversalProcessMiner"); //$NON-NLS-1$
|
|
||||||
}
|
}
|
||||||
return _minerElement;
|
return _minerElement;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue