We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e71bd22 commit f913791Copy full SHA for f913791
.version
@@ -1 +1 @@
1
-1.0.0
+1.0.1
CHANGELOG.md
@@ -1,4 +1,7 @@
# Changelog
2
3
+#### Version 1.0.1 (March 24, 2019)
4
+* Make the `Extractors#csv` factory static.
5
+
6
#### Version 1.0.0
7
* Initial Release
src/main/java/com/cinchapi/etl/Extractors.java
@@ -42,7 +42,7 @@ public final class Extractors {
42
* @param file
43
* @return the {@link Extractor}
44
*/
45
- public Extractor<Path> csv() {
+ public static Extractor<Path> csv() {
46
return file -> {
47
Verify.thatArgument(file.toFile().exists(),
48
"Cannot extract dta from {} because it does not exist",
0 commit comments