Skip to content

Commit b4bb024

Browse files
committed
etl: remove public access modifier from etl
1 parent ac160ac commit b4bb024

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

exercises/etl/.meta/src/reference/java/Etl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import java.util.List;
33
import java.util.Map;
44

5-
public class Etl {
6-
public Map<String, Integer> transform(Map<Integer, List<String>> old) {
5+
class Etl {
6+
Map<String, Integer> transform(Map<Integer, List<String>> old) {
77
final Map<String, Integer> result = new HashMap<String, Integer>();
88
for (Map.Entry<Integer, List<String>> e : old.entrySet()) {
99
for (String s : e.getValue()) {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import java.util.List;
22
import java.util.Map;
33

4-
public class Etl {
5-
public Map<String, Integer> transform(Map<Integer, List<String>> old) {
4+
class Etl {
5+
Map<String, Integer> transform(Map<Integer, List<String>> old) {
66
throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
77
}
88
}

0 commit comments

Comments
 (0)