Skip to content

Commit

Permalink
Fixing scala formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
orodeh committed Mar 30, 2020
1 parent c14ed30 commit e8b8979
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/scala/dxWDL/dx/DxFindDataObjects.scala
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ case class DxFindDataObjects(limit: Option[Int], verbose: Verbose) {
outputSpec)
case _: DxFile =>
val archivalState = jsv.asJsObject.fields.get("archivalState") match {
case None => throw new Exception("'archivalState' field is missing")
case None => throw new Exception("'archivalState' field is missing")
case Some(JsString(x)) => DxArchivalState.fromString(x)
case Some(other) => throw new Exception(s"malformed archivalState field ${other}")
case Some(other) => throw new Exception(s"malformed archivalState field ${other}")
}
DxFileDescribe(
dxProject.id,
Expand Down

0 comments on commit e8b8979

Please sign in to comment.