java: remove commented out code for OpenOffice 3.3

Specifically the comment says:
 This method not longer necessary since OOo 3.4 where the component registration
 was changed to passive component registration. For more details see
 http://wiki.openoffice.org/wiki/Passive_Component_Registration

Change-Id: Icfeec634ebc30a270533787b94e2a9a4318778db
This commit is contained in:
Noel Grandin
2014-08-04 13:51:59 +02:00
parent 66c34ff3e7
commit 0781dad870
19 changed files with 0 additions and 331 deletions

View File

@ -54,20 +54,6 @@ public class TestServiceProvider
multiFactory, regKey);
return xSingleServiceFactory;
}
// This method not longer necessary since OOo 3.4 where the component registration
// was changed to passive component registration. For more details see
// http://wiki.openoffice.org/wiki/Passive_Component_Registration
// public static boolean __writeRegistryServiceInfo(XRegistryKey regKey){
// boolean bregA= FactoryHelper.writeRegistryServiceInfo(
// TestComponentA.class.getName(),
// TestComponentA.__serviceName, regKey);
// boolean bregB= FactoryHelper.writeRegistryServiceInfo(
// TestComponentB.class.getName(),
// TestComponentB.__serviceName, regKey);
// return bregA && bregB;
// }
}