Skip to content

Commit 8ebddc9

Browse files
committed
Create csv package
The `csv` package contains modules for working with comma separated value (csv) files.
1 parent dfe6b78 commit 8ebddc9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/java/org/culturegraph/mf/stream/converter/CsvDecoder.java renamed to src/main/java/org/culturegraph/mf/csv/CsvDecoder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.stream.converter;
16+
package org.culturegraph.mf.csv;
1717

1818
import java.io.IOException;
1919
import java.io.StringReader;

src/main/resources/flux-commands.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ decode-aseq org.culturegraph.mf.stream.converter.bib.AseqDecoder
4444
decode-pica org.culturegraph.mf.stream.converter.bib.pica.PicaDecoder
4545
decode-mab org.culturegraph.mf.stream.converter.bib.MabDecoder
4646
decode-formeta org.culturegraph.mf.formeta.FormetaDecoder
47-
decode-csv org.culturegraph.mf.stream.converter.CsvDecoder
47+
decode-csv org.culturegraph.mf.csv.CsvDecoder
4848
decode-marc21 org.culturegraph.mf.stream.converter.bib.Marc21Decoder
4949
decode-xml org.culturegraph.mf.xml.XmlDecoder
5050
decode-string org.culturegraph.mf.strings.StringDecoder

src/test/java/org/culturegraph/mf/stream/converter/CsvDecoderTest.java renamed to src/test/java/org/culturegraph/mf/csv/CsvDecoderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.stream.converter;
16+
package org.culturegraph.mf.csv;
1717

1818
import static org.mockito.Mockito.inOrder;
1919

0 commit comments

Comments
 (0)