We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ddea77 commit 789c43dCopy full SHA for 789c43d
1 file changed
src/main/scala/org/nlogo/models/package.scala
@@ -48,6 +48,7 @@ package object models {
48
val extensions = Array("nlogox", "nlogox3d")
49
listFiles(modelDir, extensions, true).asScala
50
.filterNot { f => extensions.map(".tmp." + _).exists(f.getName.endsWith) }
51
+ .filterNot { f => f.getParentFile.getName.endsWith("benchmarks") }
52
.map { f => (f, loader.readModel(f.toURI), Try(readFileToString(f))) }
53
} finally workspace.dispose()
54
}
0 commit comments