Skip to content

Commit 4885f9a

Browse files
committed
Make some stuff private
1 parent 61bf79f commit 4885f9a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

crypto/js/src/main/scala/org/http4s/crypto/Priority.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ package org.http4s.crypto
2626
* This type can be useful for problems where multiple algorithms can be used, depending on the
2727
* type classes available.
2828
*/
29-
sealed trait Priority[+P, +F] {
29+
private[http4s] sealed trait Priority[+P, +F] {
3030

3131
import Priority.{Fallback, Preferred}
3232

crypto/js/src/main/scala/org/http4s/crypto/SecurityException.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
package org.http4s.crypto
1818

19-
class GeneralSecurityException(message: String = null, cause: Throwable = null)
19+
private[http4s] class GeneralSecurityException(message: String = null, cause: Throwable = null)
2020
extends Exception(message, cause)
2121

22-
class KeyException(message: String = null, cause: Throwable = null)
22+
private[http4s] class KeyException(message: String = null, cause: Throwable = null)
2323
extends GeneralSecurityException(message, cause)
2424

25-
class InvalidKeyException(message: String = null, cause: Throwable = null)
25+
private[http4s] class InvalidKeyException(message: String = null, cause: Throwable = null)
2626
extends KeyException(message, cause)

0 commit comments

Comments
 (0)