diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2011-03-24 23:19:02 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2011-03-24 23:19:02 +0900 |
commit | cde377f7584fd713dfe5d1d8debf4449dfb07f32 (patch) | |
tree | f626f33360fa86f49b1db80807c1c5be9635870c /jvmfwk | |
parent | ab5d819e7eb62177fd0acb5db058c30322eacf1b (diff) |
Removed an unchanged variable
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/source/elements.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jvmfwk/source/elements.cxx b/jvmfwk/source/elements.cxx index 52ea89176d12..6ffb07a5ee0b 100644 --- a/jvmfwk/source/elements.cxx +++ b/jvmfwk/source/elements.cxx @@ -1136,11 +1136,10 @@ JavaInfo * CNodeJavaInfo::makeJavaInfo() const sal_uInt32 NodeJava::getModifiedTime() const { - sal_uInt32 ret = 0; if (m_layer != INSTALL) { OSL_ASSERT(0); - return ret; + return 0; } rtl::OString modTimeSeconds = getElementModified(); return (sal_uInt32) modTimeSeconds.toInt64(); |