diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-02-18 20:53:17 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-02-18 21:33:04 +0100 |
commit | a8a38888b5659d4ae655d2aa26b10d248baf6732 (patch) | |
tree | cab2017c91c15fcd84440ec96f136adec147a154 /unodevtools | |
parent | 19ad1f959a9ac01e602be2e3967736cee19d0dd5 (diff) |
unodevtools: remove dead code
Diffstat (limited to 'unodevtools')
-rw-r--r-- | unodevtools/source/skeletonmaker/javacompskeleton.cxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/unodevtools/source/skeletonmaker/javacompskeleton.cxx b/unodevtools/source/skeletonmaker/javacompskeleton.cxx index 63bbd396be2b..805b242a3c5c 100644 --- a/unodevtools/source/skeletonmaker/javacompskeleton.cxx +++ b/unodevtools/source/skeletonmaker/javacompskeleton.cxx @@ -78,15 +78,6 @@ void generateImports(std::ostream & o, ProgramOptions const & options, o << "import com.sun.star.lib.uno.helper.PropertySetMixin;\n"; } } - - -// boost::unordered_set< OString, OStringHash >::const_iterator iter = -// interfaces.begin(); -// while (iter != interfaces.end()) -// { -// o << "import " << ((*iter).getStr()) << ";\n"; -// iter++; -// } } void generateCompFunctions(std::ostream & o, const OString & classname) @@ -885,19 +876,6 @@ void generateSkeleton(ProgramOptions const & options, interfaces, services, properties); checkType(manager, "com.sun.star.frame.XDispatch", interfaces, services, properties); - - -// ProtocolCmdMap::const_iterator iter2 = options.protocolCmdMap.begin(); -// while (iter2 != options.protocolCmdMap.end()) { -// fprintf(stdout, "prt=%s\n", (*iter2).first.getStr()); - -// for (std::vector< OString >::const_iterator i = (*iter2).second.begin(); -// i != (*iter2).second.end(); ++i) { -// fprintf(stdout, "cmd=%s\n", (*i).getStr()); -// } -// iter2++; -// } -// return; } if (options.componenttype == 2) { |