From c476a84abd83873ff807ac5943d882b43f72c90c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 25 Sep 2014 05:38:24 +0200 Subject: remove pointless comments Change-Id: I8edfe830b8f6ca7f1809332870e06d1d286b90e8 --- tools/source/generic/fract.cxx | 2 -- 1 file changed, 2 deletions(-) (limited to 'tools/source/generic/fract.cxx') diff --git a/tools/source/generic/fract.cxx b/tools/source/generic/fract.cxx index cfc68b12a583..198a42aa2639 100644 --- a/tools/source/generic/fract.cxx +++ b/tools/source/generic/fract.cxx @@ -486,7 +486,6 @@ bool operator > ( const Fraction& rVal1, const Fraction& rVal2 ) SvStream& ReadFraction( SvStream& rIStream, Fraction& rFract ) { - //fdo#39428 SvStream no longer supports operator>>(long&) sal_Int32 nTmp(0); rIStream.ReadInt32( nTmp ); rFract.nNumerator = nTmp; @@ -497,7 +496,6 @@ SvStream& ReadFraction( SvStream& rIStream, Fraction& rFract ) SvStream& WriteFraction( SvStream& rOStream, const Fraction& rFract ) { - //fdo#39428 SvStream no longer supports operator<<(long) rOStream.WriteInt32( rFract.nNumerator ); rOStream.WriteInt32( rFract.nDenominator ); return rOStream; -- cgit