Explorar el Código

Freshly fetched "etl" compiles without error.

(contributes to #53)
John S. Ryan hace 11 años
padre
commit
66bbaeda44
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  1. 6
    0
      etl/src/main/java/Etl.java

+ 6
- 0
etl/src/main/java/Etl.java Ver fichero

@@ -1,2 +1,8 @@
1
+import java.util.List;
2
+import java.util.Map;
3
+
1 4
 public class Etl {
5
+   public Map<String, Integer> transform(Map<Integer, List<String>> old) {
6
+      return null;
7
+   }
2 8
 }