Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
thesamet committed Oct 8, 2023
1 parent 8ee068e commit 01d5369
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -689,9 +689,9 @@ class DescriptorImplicits private[compiler] (
case SealedOneofStyle.Optional => messageOptions.getSealedOneofExtendsList.asScala.toSeq
}

def derives: Seq[String] = messageOptions.getDerivesList.asScala
def derives: Seq[String] = messageOptions.getDerivesList.asScala.toSeq

def sealedOneofDerives: Seq[String] = messageOptions.getSealedOneofDerivesList.asScala
def sealedOneofDerives: Seq[String] = messageOptions.getSealedOneofDerivesList.asScala.toSeq

def nestedTypes: Seq[Descriptor] = message.getNestedTypes.asScala.toSeq

Expand Down

0 comments on commit 01d5369

Please sign in to comment.