diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-04-11 15:07:42 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-11 15:07:42 +0200 |
commit | a730dc1b566565472ea7e4b94f0dea9705d0a809 (patch) | |
tree | d8e944435a9e5df971208e75870483accd0c9f56 /jvmfwk/source/framework.hxx | |
parent | e4627e83de6ccae825944004604316b5b419f2ac (diff) |
Remove unnecessary jfw::CJavaInfo::cloneJavaInfo
Change-Id: Ia9e807c0d1e5b0664d711c551a5e70afccbcc564
Diffstat (limited to 'jvmfwk/source/framework.hxx')
-rw-r--r-- | jvmfwk/source/framework.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/jvmfwk/source/framework.hxx b/jvmfwk/source/framework.hxx index 8e433054fd3a..9521a723c54a 100644 --- a/jvmfwk/source/framework.hxx +++ b/jvmfwk/source/framework.hxx @@ -67,8 +67,6 @@ namespace jfw class CJavaInfo { - static JavaInfo * copyJavaInfo(const JavaInfo * pInfo); - enum _transfer_ownership {TRANSFER}; /*Attaching the pointer to this class. The argument pInfo must not be freed afterwards. @@ -96,10 +94,11 @@ public: ::JavaInfo * detach(); const ::JavaInfo* operator ->() const { return pInfo;} operator ::JavaInfo* () { return pInfo;} - ::JavaInfo* cloneJavaInfo() const; OUString getLocation() const; sal_uInt64 getFeatures() const; + + static JavaInfo * copyJavaInfo(const JavaInfo * pInfo); }; class FrameworkException : public std::exception |