Skip to content

Commit

Permalink
scalastyle
Browse files Browse the repository at this point in the history
  • Loading branch information
ericm-db committed Jan 18, 2025
1 parent 0f6bdb5 commit faf2f90
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import org.apache.spark.annotation.{Evolving, Experimental}
/**
* Interface used for arbitrary stateful operations with the v2 API to capture list value state.
*/
trait ListState[S] extends Serializable {
trait ListState[S] extends Serializable {

/** Whether state exists or not. */
def exists(): Boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import org.apache.spark.sql.errors.ExecutionErrors
*/
@Experimental
@Evolving
abstract class StatefulProcessor[K, I, O] extends Serializable {
abstract class StatefulProcessor[K, I, O] extends Serializable {

// scalastyle:off
// Disable style checker so "implicits" object can start with lowercase i
Expand Down Expand Up @@ -125,8 +125,7 @@ import org.apache.spark.sql.errors.ExecutionErrors
*/
@Experimental
@Evolving
abstract class StatefulProcessorWithInitialState[K, I, O, S]
extends StatefulProcessor[K, I, O] {
abstract class StatefulProcessorWithInitialState[K, I, O, S] extends StatefulProcessor[K, I, O] {

/**
* Function that will be invoked only in the first batch for users to process initial states.
Expand Down

0 comments on commit faf2f90

Please sign in to comment.