summaryrefslogtreecommitdiff
path: root/comphelper/qa
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 17:52:30 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-27 06:42:45 -0600
commita67c2a12bccef06f1fb17d8fbae08e44f44c4392 (patch)
tree354b2448d2aa8259a05ceb4e82605f8e37176528 /comphelper/qa
parent65453d5aebdf851034632d5593f0a1023f7015fe (diff)
Remove visual noise from comphelper
Change-Id: I7e5512b43240beee05404cff9d49a87d0217ea89 Reviewed-on: https://gerrit.libreoffice.org/8242 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'comphelper/qa')
-rw-r--r--comphelper/qa/complex/comphelper/Map.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/comphelper/qa/complex/comphelper/Map.java b/comphelper/qa/complex/comphelper/Map.java
index 20ce90e166c4..0603ba34e13f 100644
--- a/comphelper/qa/complex/comphelper/Map.java
+++ b/comphelper/qa/complex/comphelper/Map.java
@@ -193,7 +193,7 @@ public class Map /* extends complexlib.ComplexTestCase */
Type intType = new Type( Integer.class );
Type longType = new Type( Long.class );
Type msfType = new Type ( XMultiServiceFactory.class );
- // ....................................................................
+
// css.uno.Type should be a valid key type
impl_checkMappings(
new Type[] { intType, longType, msfType },
@@ -201,7 +201,7 @@ public class Map /* extends complexlib.ComplexTestCase */
"type->string"
);
- // ....................................................................
+
// any UNO interface type should be a valid key type.
// Try with some form components (just because I like form components :), and the very first application
// for the newly implemented map will be to map XFormComponents to drawing shapes
@@ -216,7 +216,7 @@ public class Map /* extends complexlib.ComplexTestCase */
components[0] = UnoRuntime.queryInterface( formComponentType.getZClass(), components[0] );
impl_checkMappings( components, serviceNames, "XFormComponent->string" );
- // ....................................................................
+
// any UNO enum type should be a valid key type
impl_checkMappings(
new TypeClass[] { intType.getTypeClass(), longType.getTypeClass(), msfType.getTypeClass() },