summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/jdbc/SQLWarning.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/jdbc/SQLWarning.cxx')
-rw-r--r--connectivity/source/drivers/jdbc/SQLWarning.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/connectivity/source/drivers/jdbc/SQLWarning.cxx b/connectivity/source/drivers/jdbc/SQLWarning.cxx
index cf30b8b0e530..6a5e459f76c8 100644
--- a/connectivity/source/drivers/jdbc/SQLWarning.cxx
+++ b/connectivity/source/drivers/jdbc/SQLWarning.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -40,9 +41,10 @@ java_sql_SQLWarning_BASE::~java_sql_SQLWarning_BASE()
jclass java_sql_SQLWarning_BASE::getMyClass() const
{
- // die Klasse muss nur einmal geholt werden, daher statisch
+ // the class needs to be fetched only once, that is why it is static
if( !theClass )
theClass = findMyClass("java/sql/SQLWarning");
return theClass;
}
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */