summaryrefslogtreecommitdiff
path: root/scripting/java/com/sun/star/script/framework/io/XStorageHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'scripting/java/com/sun/star/script/framework/io/XStorageHelper.java')
-rw-r--r--scripting/java/com/sun/star/script/framework/io/XStorageHelper.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripting/java/com/sun/star/script/framework/io/XStorageHelper.java b/scripting/java/com/sun/star/script/framework/io/XStorageHelper.java
index 7123ca5c8973..2d05d4dbb0db 100644
--- a/scripting/java/com/sun/star/script/framework/io/XStorageHelper.java
+++ b/scripting/java/com/sun/star/script/framework/io/XStorageHelper.java
@@ -220,7 +220,7 @@ public class XStorageHelper implements XEventListener {
}
- static public void disposeObject(XInterface xInterface) {
+ public static void disposeObject(XInterface xInterface) {
if (xInterface == null) {
return;
}
@@ -235,7 +235,7 @@ public class XStorageHelper implements XEventListener {
xComponent.dispose();
}
- static public void commit(XInterface xInterface) {
+ public static void commit(XInterface xInterface) {
XTransactedObject xTrans =
UnoRuntime.queryInterface(XTransactedObject.class, xInterface);