Skip to content

Commit

Permalink
Make cosmetic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
julianmendez committed Dec 23, 2019
1 parent 2c4bdda commit 8fdaca1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ case class RecordComparator() extends Comparator[Record] {

def compareValues(optValue0: Option[PrimitiveTypeValue], optValue1: Option[PrimitiveTypeValue], hasReverseOrder: Boolean): Int = {
val result: Int = if (hasReverseOrder) {
compareValues(optValue1, optValue0, false)
compareValues(optValue1, optValue0, hasReverseOrder = false)
} else {
val res = if (optValue0.isDefined) {
if (optValue1.isDefined) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

package de.tudresden.inf.lat.tabulas.ext.renderer

import java.io.{OutputStreamWriter, Writer}
import java.io.Writer
import java.util.Objects

import de.tudresden.inf.lat.tabulas.datatype.{ParameterizedListValue, PrimitiveTypeValue, Record, URIValue}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

package de.tudresden.inf.lat.tabulas.ext.renderer

import java.io.{OutputStreamWriter, Writer}
import java.io.Writer
import java.util.Objects

import de.tudresden.inf.lat.tabulas.datatype._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

package de.tudresden.inf.lat.tabulas.ext.renderer

import java.io.{OutputStreamWriter, Writer}
import java.io.Writer
import java.text.SimpleDateFormat
import java.util.Objects

Expand Down

0 comments on commit 8fdaca1

Please sign in to comment.