From 2d25e3c354bfed19ee5c6f596cf57eb58ead9162 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 9 Oct 2011 11:42:02 +0100 Subject: tidy this a little bit --- tools/source/stream/stream.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx index afaa9174ee13..34dc93d66bd7 100644 --- a/tools/source/stream/stream.cxx +++ b/tools/source/stream/stream.cxx @@ -717,8 +717,7 @@ sal_Bool SvStream::ReadLine( ByteString& rStr ) sal_Bool SvStream::ReadLine( rtl::OString& rStr ) { ByteString aFoo; - sal_Bool ret; - ret = ReadLine(aFoo); + sal_Bool ret = ReadLine(aFoo); rStr = aFoo; return ret; } -- cgit