Skip to content

Commit

Permalink
[INTERNAL] use CsvHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
SeeSharpSoft committed Feb 7, 2020
1 parent ce2918b commit 4fd7c51
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -9,8 +9,8 @@
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.psi.TokenType;
import com.intellij.psi.tree.IElementType;
import net.seesharpsoft.intellij.plugins.csv.CsvHelper;
import net.seesharpsoft.intellij.plugins.csv.CsvLexerAdapter;
import net.seesharpsoft.intellij.plugins.csv.components.CsvFileAttributes;
import net.seesharpsoft.intellij.plugins.csv.psi.CsvTypes;
import org.jetbrains.annotations.NotNull;

Expand Down Expand Up @@ -46,7 +46,7 @@ public CsvSyntaxHighlighter(Project project, VirtualFile virtualFile) {
@NotNull
@Override
public Lexer getHighlightingLexer() {
return new CsvLexerAdapter(CsvFileAttributes.getInstance(myProject).getValueSeparator(myProject, myVirtualFile), CsvFileAttributes.getInstance(myProject).getEscapeCharacter(myProject, myVirtualFile));
return new CsvLexerAdapter(CsvHelper.getValueSeparator(myProject, myVirtualFile), CsvHelper.getEscapeCharacter(myProject, myVirtualFile));
}

@NotNull
Expand Down

0 comments on commit 4fd7c51

Please sign in to comment.