summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-06 09:03:34 +0200
committerNoel Grandin <noel@peralex.com>2014-08-12 09:41:29 +0200
commit161a7e3a4bb4b50226ff2ab38e39a9c149001f7e (patch)
treeac159b01889a7d29fa1628f64ea8c286be2d93f6 /odk/examples/DevelopersGuide
parentd1d2d3296b9f98a5144022612d03f6cb419164e5 (diff)
java: remove unused parameters
Change-Id: Iefc29756fd02b6898803c8a7faecd55108e088eb
Diffstat (limited to 'odk/examples/DevelopersGuide')
-rw-r--r--odk/examples/DevelopersGuide/Forms/DataAwareness.java2
-rw-r--r--odk/examples/DevelopersGuide/Forms/TableCellTextBinding.java4
2 files changed, 1 insertions, 5 deletions
diff --git a/odk/examples/DevelopersGuide/Forms/DataAwareness.java b/odk/examples/DevelopersGuide/Forms/DataAwareness.java
index 494591853f72..4fda1ce429eb 100644
--- a/odk/examples/DevelopersGuide/Forms/DataAwareness.java
+++ b/odk/examples/DevelopersGuide/Forms/DataAwareness.java
@@ -409,7 +409,7 @@ public class DataAwareness extends DocumentBasedExample implements XPropertyChan
/* ------------------------------------------------------------------ */
/** add a specified table name to the table filter of the given data source.
*/
- protected void makeTableVisible( XDataSource xDS, XConnection xConn, String sTableName ) throws java.lang.Exception
+ protected void makeTableVisible( XDataSource xDS, String sTableName ) throws java.lang.Exception
{
// get the table filter
XPropertySet xDSP = UNO.queryPropertySet( xDS );
diff --git a/odk/examples/DevelopersGuide/Forms/TableCellTextBinding.java b/odk/examples/DevelopersGuide/Forms/TableCellTextBinding.java
index 3b47da5ebc86..a7daf3550241 100644
--- a/odk/examples/DevelopersGuide/Forms/TableCellTextBinding.java
+++ b/odk/examples/DevelopersGuide/Forms/TableCellTextBinding.java
@@ -193,8 +193,4 @@ public class TableCellTextBinding
}
}
- public void disposing(com.sun.star.lang.EventObject eventObject)
- {
- // not interested in
- }
}