comparison src/luan/modules/parsers/Csv.java @ 1402:27efb1fcbcb5

move luan.lib to goodjava
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 17 Sep 2019 01:35:01 -0400
parents 25746915a241
children b89212fd04b5
comparison
equal deleted inserted replaced
1401:ef1620aa99cb 1402:27efb1fcbcb5
1 package luan.modules.parsers; 1 package luan.modules.parsers;
2 2
3 import luan.Luan; 3 import luan.Luan;
4 import luan.LuanTable; 4 import luan.LuanTable;
5 import luan.LuanException; 5 import luan.LuanException;
6 import luan.lib.parser.Parser; 6 import goodjava.parser.Parser;
7 import luan.lib.parser.ParseException; 7 import goodjava.parser.ParseException;
8 8
9 9
10 public final class Csv { 10 public final class Csv {
11 11
12 public static LuanTable toList(Luan luan,String line) throws ParseException { 12 public static LuanTable toList(Luan luan,String line) throws ParseException {