mirror of
https://github.com/uwol/proleap-vb6-parser.git
synced 2025-12-16 19:47:04 +03:00
UTF-8 as default charset
This commit is contained in:
@@ -9,12 +9,13 @@
|
||||
package io.proleap.vb6.asg.params.impl;
|
||||
|
||||
import java.nio.charset.Charset;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
|
||||
import io.proleap.vb6.asg.params.VbParserParams;
|
||||
|
||||
public class VbParserParamsImpl implements VbParserParams {
|
||||
|
||||
protected Charset charset = Charset.defaultCharset();
|
||||
protected Charset charset = StandardCharsets.UTF_8;
|
||||
|
||||
protected boolean ignoreSyntaxErrors;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user