Skip to content

Commit

Permalink
Merge pull request #144 from guardian/remove-unused-Secret-class
Browse files Browse the repository at this point in the history
Remove unused `com.gu.pandomainauth.Secret` class
  • Loading branch information
rtyley authored May 22, 2024
2 parents cf7f3fb + ae86cd0 commit f9968eb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ lib_managed/
src_managed/
project/boot/
project/plugins/project/
.bsp/

# Scala-IDE specific
.scala_dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.gu.pandomainauth.model

import com.gu.pandomainauth.{PrivateKey, PublicKey, Secret}
import com.gu.pandomainauth.{PrivateKey, PublicKey}

case class PanDomainAuthSettings(
publicKey: PublicKey,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ package com.gu
package object pandomainauth {
case class PublicKey(key: String) extends AnyVal
case class PrivateKey(key: String) extends AnyVal
case class Secret(secret: String) extends AnyVal
}

0 comments on commit f9968eb

Please sign in to comment.