diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-03 08:39:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-05-04 12:39:40 +0200 |
commit | 58a32075ca4f457f570af75aef368dd6c389aca7 (patch) | |
tree | e437dcbdeb248b4316cb8a9281d1543419853f6d /ucb/source/ucp/file/prov.cxx | |
parent | 7d47700972d267fe7c5270c5dadd45a523a2baec (diff) |
use Any constructor instead of temporaries
Change-Id: Iffb82a2cee1a28d89eeea2b905aaa14086ee475a
Diffstat (limited to 'ucb/source/ucp/file/prov.cxx')
-rw-r--r-- | ucb/source/ucp/file/prov.cxx | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/ucb/source/ucp/file/prov.cxx b/ucb/source/ucp/file/prov.cxx index d0181b57239d..313bdcccafc9 100644 --- a/ucb/source/ucp/file/prov.cxx +++ b/ucb/source/ucp/file/prov.cxx @@ -456,21 +456,15 @@ FileProvider::getPropertyValue( initProperties(); if( aPropertyName == "FileSystemNotation" ) { - Any aAny; - aAny <<= m_FileSystemNotation; - return aAny; + return Any(m_FileSystemNotation); } else if( aPropertyName == "HomeDirectory" ) { - Any aAny; - aAny <<= m_HomeDirectory; - return aAny; + return Any(m_HomeDirectory); } else if( aPropertyName == "HostName" ) { - Any aAny; - aAny <<= m_HostName; - return aAny; + return Any(m_HostName); } else throw UnknownPropertyException( THROW_WHERE ); |