You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by st...@apache.org on 2014/06/18 13:11:54 UTC

svn commit: r1603414 - /sling/trunk/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/ChooseArchetypeWizardPage.java

Author: stefanegli
Date: Wed Jun 18 11:11:54 2014
New Revision: 1603414

URL: http://svn.apache.org/r1603414
Log:
SLING-3678 : disabling indexChanged handling for now to verify if this fixes the 'many updates' problem (but still correctly shows the embedded archetype eg)

Modified:
    sling/trunk/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/ChooseArchetypeWizardPage.java

Modified: sling/trunk/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/ChooseArchetypeWizardPage.java
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/ChooseArchetypeWizardPage.java?rev=1603414&r1=1603413&r2=1603414&view=diff
==============================================================================
--- sling/trunk/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/ChooseArchetypeWizardPage.java (original)
+++ sling/trunk/tooling/ide/eclipse-m2e-ui/src/org/apache/sling/ide/eclipse/ui/wizards/np/ChooseArchetypeWizardPage.java Wed Jun 18 11:11:54 2014
@@ -306,15 +306,15 @@ public class ChooseArchetypeWizardPage e
 
     @Override
     public void indexChanged(IRepository repository) {
-        Display.getDefault().asyncExec(new Runnable() {
-            @Override
-            public void run() {
-                if (isCurrentPage()) {
-                    knownArchetypes.removeAll();
-                    initialize();
-                }
-            }
-        });
+//        Display.getDefault().asyncExec(new Runnable() {
+//            @Override
+//            public void run() {
+//                if (isCurrentPage()) {
+//                    knownArchetypes.removeAll();
+//                    initialize();
+//                }
+//            }
+//        });
     }
 
     @Override