mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-16 13:35:22 +02:00
[212229] using default code page converter that isn't null
This commit is contained in:
parent
4c3386eebe
commit
070e5834f6
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
* David McKnight (IBM) - [209704] [api] Ability to override default encoding conversion needed.
|
* 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;
|
package org.eclipse.rse.services.files;
|
||||||
|
|
||||||
|
@ -72,7 +73,7 @@ public class CodePageConverterManager {
|
||||||
|
|
||||||
if (matchingCodePageConverter == null)
|
if (matchingCodePageConverter == null)
|
||||||
{
|
{
|
||||||
matchingCodePageConverter = _defaultCodePageConverter;
|
matchingCodePageConverter = getDefaultCodePageConverter();
|
||||||
}
|
}
|
||||||
|
|
||||||
return matchingCodePageConverter;
|
return matchingCodePageConverter;
|
||||||
|
|
Loading…
Add table
Reference in a new issue