Skip to content

Commit

Permalink
Revert unnecessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeckerle committed Dec 20, 2024
1 parent cf49ea0 commit 38ad1bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -410,10 +410,9 @@ object Compiler {
optRootName: Option[String],
optRootNamespace: Option[String]
): ProcessorFactory = {
val res = synchronized {
synchronized {
c.compileSourceInternal(schemaSource, optRootName, optRootNamespace)
}
res
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ trait SchemaSetRuntime1Mixin {
private lazy val layerRuntimeCompiler = new LayerRuntimeCompiler

private lazy val allLayers: Seq[LayerRuntimeData] = LV('allLayers) {
lazy val lrds: Seq[LayerRuntimeData] = self.allSchemaComponents
val lrds: Seq[LayerRuntimeData] = self.allSchemaComponents
.collect {
case stb: SequenceTermBase if (stb.isLayered) => stb
}
Expand Down

0 comments on commit 38ad1bd

Please sign in to comment.