Project

General

Profile

« Previous | Next » 

Revision 56886

fix

View differences:

OrganizationMap.java
1 1
package eu.dnetlib.data.mapreduce.hbase.propagation.communitythroughorganization;
2 2

  
3
import java.util.ArrayList;
3 4
import java.util.HashMap;
4 5
import java.util.List;
5 6

  
......
8 9
    public OrganizationMap(){
9 10
        super();
10 11
    }
12

  
13
    public List<String> get(String key){
14

  
15
        if (super.get(key) == null){
16
            return new ArrayList<>();
17
        }
18
        return super.get(key);
19
    }
11 20
}

Also available in: Unified diff