Skip to content

Commit

Permalink
fix rebase fallout
Browse files Browse the repository at this point in the history
  • Loading branch information
ehigham committed Oct 8, 2024
1 parent 16eb070 commit 825f404
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ final class Py4JBackendApi(backend: Backend) extends Closeable with ErrorHandlin
else NonOwningTempFileManager(tmpFileManager),
theHailClassLoader = hcl,
flags = flags,
irMetadata = IrMetadata(None),
irMetadata = new IrMetadata(),
references = references,
blockMatrixCache = bmCache,
codeCache = codeCache,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ object ServiceBackendApi extends HttpLikeBackendRpc[Request] with Logging {
null,
env.hcl,
env.flags,
IrMetadata(None),
new IrMetadata(),
mutable.Map(env.references.toSeq: _*),
NoCaching,
NoCaching,
Expand Down
2 changes: 1 addition & 1 deletion hail/src/test/scala/is/hail/HailSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class HailSuite extends TestNGSuite with TestUtils {
_tempFileManager = null,
theHailClassLoader = HailSuite.theHailClassLoader,
flags = HailSuite.flags,
irMetadata = IrMetadata(None),
irMetadata = new IrMetadata(),
References = ImmutableMap(ReferenceGenome.builtinReferences()),
BlockMatrixCache = NoCaching,
CodeCache = NoCaching,
Expand Down

0 comments on commit 825f404

Please sign in to comment.