1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-04 15:45:25 +02:00

[212229] using default code page converter that isn't null

This commit is contained in:
David McKnight 2007-12-07 16:02:14 +00:00
parent 4c3386eebe
commit 070e5834f6

View file

@ -11,6 +11,7 @@
* Contributors:
* {Name} (company) - description of contribution.
* David McKnight (IBM) - [209704] [api] Ability to override default encoding conversion needed.
* David McKnight (IBM) - [212229] using default code page converter that isn't null
********************************************************************************/
package org.eclipse.rse.services.files;
@ -72,7 +73,7 @@ public class CodePageConverterManager {
if (matchingCodePageConverter == null)
{
matchingCodePageConverter = _defaultCodePageConverter;
matchingCodePageConverter = getDefaultCodePageConverter();
}
return matchingCodePageConverter;