FileBasedSourceCodeManagementSettingsAppl.st
changeset 18629 bfa8138851f8
parent 18340 ec9fc4f27d67
child 18909 94933b392764
--- a/FileBasedSourceCodeManagementSettingsAppl.st	Fri Mar 01 14:49:48 2019 +0100
+++ b/FileBasedSourceCodeManagementSettingsAppl.st	Fri Mar 01 15:41:03 2019 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2011 by eXept Software AG
               All Rights Reserved
@@ -408,12 +410,13 @@
     module := self perModulePathModule value.
     path := self perModulePath value.
 
-    path size > 0 ifTrue:[
+    path size ~~ 0 ifTrue:[
         self validateDirectoryExistsAndIsWritable:path.
         self addModule:module withData:(Array with:FileBasedSourceCodeManager with:path).
     ].
 
     "Created: / 21-12-2011 / 14:23:10 / cg"
+    "Modified: / 01-03-2019 / 15:40:30 / Claus Gittinger"
 !
 
 basicReadSettings