From e035836fb14a57b9386bbde990beaf5999a63ba2 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Thu, 30 Jun 2011 10:42:53 +0100 Subject: callcatcher: unused writeU1 --- codemaker/source/javamaker/classfile.cxx | 5 ----- 1 file changed, 5 deletions(-) (limited to 'codemaker') diff --git a/codemaker/source/javamaker/classfile.cxx b/codemaker/source/javamaker/classfile.cxx index 9ab2e4296228..1f103e7f2a69 100644 --- a/codemaker/source/javamaker/classfile.cxx +++ b/codemaker/source/javamaker/classfile.cxx @@ -90,11 +90,6 @@ void write(FileStream & file, void const * buffer, sal_uInt64 size) { } } -void writeU1(FileStream & file, sal_uInt8 data) { - unsigned char buf[] = { static_cast< unsigned char >(data) }; - write(file, &buf, sizeof buf); -} - void writeU2(FileStream & file, sal_uInt16 data) { unsigned char buf[] = { static_cast< unsigned char >(data >> 8), -- cgit