summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/jdbc/Boolean.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/jdbc/Boolean.cxx')
-rw-r--r--connectivity/source/drivers/jdbc/Boolean.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/connectivity/source/drivers/jdbc/Boolean.cxx b/connectivity/source/drivers/jdbc/Boolean.cxx
index fd52f3092c0e..307f6af80883 100644
--- a/connectivity/source/drivers/jdbc/Boolean.cxx
+++ b/connectivity/source/drivers/jdbc/Boolean.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.
@@ -39,7 +40,7 @@ java_lang_Boolean::~java_lang_Boolean()
{}
jclass java_lang_Boolean::st_getMyClass()
{
- // die Klasse muss nur einmal geholt werden, daher statisch
+ // the class must be fetched only once, therefore static
if( !theClass )
theClass = findMyClass("java/lang/Boolean");
return theClass;
@@ -49,3 +50,5 @@ jclass java_lang_Boolean::getMyClass() const
{
return st_getMyClass();
}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */