Do not add Java classes to project definition jv
authorJan Vrany <jan.vrany@fit.cvut.cz>
Thu, 11 Jun 2015 06:11:06 +0100
branchjv
changeset 15687 622cb3155c09
parent 15684 b5150780f476
child 15688 cd94c1d18498
Do not add Java classes to project definition
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Wed Jun 10 06:37:08 2015 +0200
+++ b/Tools__NewSystemBrowser.st	Thu Jun 11 06:11:06 2015 +0100
@@ -34404,8 +34404,9 @@
                                 pkg notNil ifTrue:[
                                     def := ProjectDefinition definitionClassForPackage:pkg.
                                 ].
-                                def notNil and:[
-                                    (def allClassNames includes:cls name) not]
+                                def notNil 
+                                    and: [ cls isJavaClass not
+                                    and: [ (def allClassNames includes:cls name) not] ]
                            ].
     classesNotInPackage := classesNotInPackage collect:[:cls | cls theNonMetaclass].
 
@@ -34438,7 +34439,7 @@
     ].
 
     "Created: / 21-12-2011 / 18:22:58 / cg"
-    "Modified: / 13-12-2012 / 15:24:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 11-06-2015 / 06:09:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 checkOutClass:aClass askForRevision:askForRevision