Skip to content
Snippets Groups Projects
Commit aa17a896 authored by Thomas Müller's avatar Thomas Müller
Browse files

fix return statement

parent 5eae75ee
No related branches found
No related tags found
No related merge requests found
...@@ -86,14 +86,14 @@ class DB { ...@@ -86,14 +86,14 @@ class DB {
* Start a transaction * Start a transaction
*/ */
public static function beginTransaction() { public static function beginTransaction() {
return(\OC_DB::beginTransaction()); \OC_DB::beginTransaction();
} }
/** /**
* Commit the database changes done during a transaction that is in progress * Commit the database changes done during a transaction that is in progress
*/ */
public static function commit() { public static function commit() {
return(\OC_DB::commit()); \OC_DB::commit();
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment