From ddc9595b3145e7af0958b52f47bf80bddf877a8e Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 10 Mar 2014 08:15:48 +0100 Subject: [PATCH] Remove unused util.dbg.getImplID Change-Id: I2c662698146120924e8d3807547727d62155b024 --- qadevOOo/runner/util/dbg.java | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/qadevOOo/runner/util/dbg.java b/qadevOOo/runner/util/dbg.java index 9530746eb6fc..43a25668c1b8 100644 --- a/qadevOOo/runner/util/dbg.java +++ b/qadevOOo/runner/util/dbg.java @@ -309,27 +309,4 @@ public class dbg { if (notSupportedServices) System.out.println(str); } - - /** - * Get the unique implementation id of a UNO object. - * @param xTarget An implementation of a UNO object. - * @return The implementation id. - */ - public static String getImplID( XInterface xTarget ) { - String str = ""; - XTypeProvider xTypeProvider = UnoRuntime.queryInterface( XTypeProvider.class, xTarget); - if( xTypeProvider != null ) { - byte[] id = xTypeProvider.getImplementationId(); - str = "ImplementationID: "; - for (int i=0; i