Skip to content

Commit fa233bd

Browse files
committed
remove unnecessary semicolon
1 parent f890bf1 commit fa233bd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/main/scala/scalikejdbc/async/internal/RowDataResultSet.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ private[scalikejdbc] class RowDataResultSet(var currentRow: Option[RowData], var
319319
if (ref != null && `type`.isInstance(ref)) {
320320
ref.asInstanceOf[T]
321321
} else {
322-
throw new SQLException(s"Object of class ${ref.getClass} is not an instance of ${`type`}");
322+
throw new SQLException(s"Object of class ${ref.getClass} is not an instance of ${`type`}")
323323
}
324324
}
325325

@@ -329,7 +329,7 @@ private[scalikejdbc] class RowDataResultSet(var currentRow: Option[RowData], var
329329
if (ref != null && `type`.isInstance(ref)) {
330330
ref.asInstanceOf[T]
331331
} else {
332-
throw new SQLException(s"Object of class ${ref.getClass} is not an instance of ${`type`}");
332+
throw new SQLException(s"Object of class ${ref.getClass} is not an instance of ${`type`}")
333333
}
334334
}
335335

@@ -342,7 +342,7 @@ private[scalikejdbc] class RowDataResultSet(var currentRow: Option[RowData], var
342342
override def getNCharacterStream(columnLabel: String): Reader = notsupported
343343

344344
override def close(): Unit = {
345-
closed = true;
345+
closed = true
346346
}
347347

348348
override def relative(rows: Int): Boolean = notvalid

0 commit comments

Comments
 (0)