summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-05 11:08:06 +0200
committerNoel Grandin <noel@peralex.com>2014-08-08 09:48:16 +0200
commit8d6cf7a147acde4e4a4f7600af25ed614b07f90d (patch)
treeae8f52bd74fb33459fe69eadbdb57271df86fd94 /chart2
parent60fad3fabb26a50ea238bed2f046670c6e5678f7 (diff)
java: remove dead methods
Change-Id: I9f2e705fd603a7c8832c0f0772bee9f395380a0d
Diffstat (limited to 'chart2')
-rw-r--r--chart2/qa/TestCaseOldAPI.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/chart2/qa/TestCaseOldAPI.java b/chart2/qa/TestCaseOldAPI.java
index a3f0aeee9c6f..2ada16a1c3b3 100644
--- a/chart2/qa/TestCaseOldAPI.java
+++ b/chart2/qa/TestCaseOldAPI.java
@@ -955,41 +955,6 @@ public class TestCaseOldAPI extends ComplexTestCase {
- private XComponentContext getComponentContext( XMultiServiceFactory xFact )
- {
- XComponentContext xResult = null;
-
- XPropertySet xProp = UnoRuntime.queryInterface(
- XPropertySet.class, xFact );
- if( xProp != null )
- try
- {
- xResult = (XComponentContext)
- AnyConverter.toObject(
- new Type( XComponentContext.class ),
- xProp.getPropertyValue( "DefaultContext" ) );
- }
- catch( Exception ex )
- {
- failed( ex.getMessage() );
- ex.printStackTrace( (PrintWriter)log );
- }
-
- return xResult;
- }
-
-
-
- private void printInterfacesAndServices( Object oObj )
- {
- log.println( "Services:" );
- util.dbg.getSuppServices( oObj );
- log.println( "Interfaces:" );
- util.dbg.printInterfaces( (XInterface)oObj, true );
- }
-
-
-
/// see rtl/math.hxx
private boolean approxEqual( double a, double b )
{