Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jan 11, 2024
1 parent 39642ed commit d80c2bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,9 @@ object Macros {
case None =>
q"""
if (${c.prefix}.ignoreUnknownKeys) -1
else throw new upickle.core.Abort("Unknown Key: " + s.toString)
else throw new _root_.upickle.core.Abort("Unknown Key: " + s.toString)
"""
case Some(false) => q"""throw new upickle.core.Abort("Unknown Key: " + s.toString)"""
case Some(false) => q"""throw new _root_.upickle.core.Abort("Unknown Key: " + s.toString)"""
case Some(true) => q"-1"
}
}
Expand Down

0 comments on commit d80c2bd

Please sign in to comment.