format source with scalafmt, #26511

This commit is contained in:
Auto Format 2019-03-13 10:56:20 +01:00 committed by Patrik Nordwall
parent 2ba9b988df
commit 75579bed17
779 changed files with 15729 additions and 13096 deletions

View file

@ -29,12 +29,13 @@ class TakeLastSinkSpec extends StreamSpec {
//#takeLast-operator-example
case class Student(name: String, gpa: Double)
val students = List(Student("Alison", 4.7),
Student("Adrian", 3.1),
Student("Alexis", 4),
Student("Benita", 2.1),
Student("Kendra", 4.2),
Student("Jerrie", 4.3)).sortBy(_.gpa)
val students = List(
Student("Alison", 4.7),
Student("Adrian", 3.1),
Student("Alexis", 4),
Student("Benita", 2.1),
Student("Kendra", 4.2),
Student("Jerrie", 4.3)).sortBy(_.gpa)
val sourceOfStudents = Source(students)