Skip to content

Commit

Permalink
OY-4717 poistettu kantahaun väliaikaiset tynkätoteutukset
Browse files Browse the repository at this point in the history
  • Loading branch information
marjakari committed Dec 31, 2024
1 parent f5f82b1 commit 6970de9
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ class ApplicationDao {

def findByPersonOid(personOid: String): List[Application] = {
// TODO implement
List(new Application().setState(Application.State.INCOMPLETE))
List.empty
// List(new Application().setState(Application.State.INCOMPLETE))
}

def findByOid(oid: String): Option[Application] = {
// TODO implement
Some(new Application())
None
// Some(new Application())
}

}

0 comments on commit 6970de9

Please sign in to comment.