summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qadevOOo/runner/util/dbg.java23
1 files changed, 0 insertions, 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<id.length;i++) {
- Byte b = new Byte(id[i]);
- str += b.intValue();
- }
- } else {
- str = "No Implementation ID available";
- }
- return str;
- }
-
-
}