summaryrefslogtreecommitdiff
path: root/src/dbc/scala/dbc/statement/IsolationLevel.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/dbc/scala/dbc/statement/IsolationLevel.scala')
-rw-r--r--src/dbc/scala/dbc/statement/IsolationLevel.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbc/scala/dbc/statement/IsolationLevel.scala b/src/dbc/scala/dbc/statement/IsolationLevel.scala
index 2185393316..b31614c3dd 100644
--- a/src/dbc/scala/dbc/statement/IsolationLevel.scala
+++ b/src/dbc/scala/dbc/statement/IsolationLevel.scala
@@ -12,11 +12,11 @@ package scala.dbc
package statement
-@deprecated(DbcIsDeprecated) abstract class IsolationLevel {
+@deprecated(DbcIsDeprecated, "2.9.0") abstract class IsolationLevel {
def sqlString: String
}
-@deprecated(DbcIsDeprecated) object IsolationLevel {
+@deprecated(DbcIsDeprecated, "2.9.0") object IsolationLevel {
case object ReadUncommitted extends IsolationLevel {
def sqlString = "ISOLATION LEVEL READ UNCOMMITTED"
}