Skip to content

Commit

Permalink
unfinal case objects
Browse files Browse the repository at this point in the history
  • Loading branch information
majk-p committed Apr 12, 2022
1 parent 244ca4b commit 6b21a2a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/scala/net/michalp/identicon4s/Layouts.scala
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ private[identicon4s] object Layouts {
*
* D
*/
final case object Diamond extends Layout {
case object Diamond extends Layout {

override val objectPositions: Seq[RelativePosition] = Seq(
RelativePosition(0.5, 0.2),
Expand All @@ -81,7 +81,7 @@ private[identicon4s] object Layouts {
*
* C D
*/
final case object Square extends Layout {
case object Square extends Layout {

override val objectPositions: Seq[RelativePosition] = Seq(
RelativePosition(0.2, 0.2),
Expand All @@ -97,7 +97,7 @@ private[identicon4s] object Layouts {
*
* B C
*/
final case object Triangle extends Layout {
case object Triangle extends Layout {

override val objectPositions: Seq[RelativePosition] = Seq(
RelativePosition(0.5, 0.2),
Expand All @@ -114,7 +114,7 @@ private[identicon4s] object Layouts {
*
* C D
*/
final case object ShapeX extends Layout {
case object ShapeX extends Layout {

override val objectPositions: Seq[RelativePosition] = Seq(
RelativePosition(0.2, 0.2),
Expand All @@ -133,7 +133,7 @@ private[identicon4s] object Layouts {
*
* C
*/
final case object Diagonal extends Layout {
case object Diagonal extends Layout {

override val objectPositions: Seq[RelativePosition] = Seq(
RelativePosition(0.2, 0.2),
Expand Down

0 comments on commit 6b21a2a

Please sign in to comment.