TDI-27079 : put back the initialization of jet emitters when start the product, and avoid a build of the project at the end, since we already check all jet emitters one by one in some other classes
git-svn-id: http://talendforge.org/svn/tos/trunk@107141 f6f1c999-d317-4740-80b0-e6d1abc6f99e
This commit is contained in:
@@ -15,15 +15,12 @@ public class GeneratedJetEmitersLoginTask implements IRunnableWithProgress {
|
||||
|
||||
@Override
|
||||
public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
|
||||
// TDI-26796 Avoid the generation of JET Emitters when start the studio
|
||||
|
||||
// log.info("Generating JetEmiters"); //$NON-NLS-1$
|
||||
// SubMonitor subMonitor = SubMonitor.convert(monitor, 1);
|
||||
// subMonitor.setTaskName("Generating Jet Emiters.");
|
||||
// ICoreService coreService = (ICoreService) GlobalServiceRegister.getDefault().getService(ICoreService.class);
|
||||
// coreService.initializeTemplates();
|
||||
// subMonitor.done();
|
||||
|
||||
SubMonitor subMonitor = SubMonitor.convert(monitor, 1);
|
||||
subMonitor.setTaskName("Generating Jet Emitters.");
|
||||
ICoreService coreService = (ICoreService) GlobalServiceRegister.getDefault().getService(ICoreService.class);
|
||||
coreService.initializeTemplates();
|
||||
subMonitor.done();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user