# HG changeset patch # User wenzelm # Date 1342820274 -7200 # Node ID dbd75cbb84bab401dd6333a8e8a37f9f9518b4de # Parent 5b3440850d366bf915bd45ca39b19a6213c5eff4 updated File.find_files; diff -r 5b3440850d36 -r dbd75cbb84ba src/Tools/jEdit/src/scala_console.scala --- a/src/Tools/jEdit/src/scala_console.scala Fri Jul 20 23:16:54 2012 +0200 +++ b/src/Tools/jEdit/src/scala_console.scala Fri Jul 20 23:37:54 2012 +0200 @@ -30,7 +30,7 @@ { def find_jars(start: String): List[String] = if (start != null) - Standard_System.find_files(new JFile(start), + File.find_files(new JFile(start), entry => entry.isFile && entry.getName.endsWith(".jar")).map(_.getAbsolutePath) else Nil val path = find_jars(jEdit.getSettingsDirectory) ::: find_jars(jEdit.getJEditHome)