Commit 9025642dbc1dcc738e8ad54e4726127056660c52
1 parent
5d7f0abf
poprawka błędu w MorphInterpretation
git-svn-id: svn://svn.nlp.ipipan.waw.pl/morfeusz/trunk@321 ff4e3ee1-f430-4e82-ade0-24591c43f1fd
Showing
1 changed file
with
2 additions
and
2 deletions
morfeusz/wrappers/java/pl/sgjp/morfeusz/MorphInterpretation.java
... | ... | @@ -50,8 +50,8 @@ public class MorphInterpretation { |
50 | 50 | this.labelsId = mi.getLabelsId(); |
51 | 51 | } |
52 | 52 | |
53 | - static java.util.List<MorphInterpretation> createList(InterpsList interpsList) { | |
54 | - java.util.List res = new java.util.ArrayList<>(); | |
53 | +static java.util.List<MorphInterpretation> createList(InterpsList interpsList) { | |
54 | + java.util.List<MorphInterpretation> res = new java.util.ArrayList<MorphInterpretation>(); | |
55 | 55 | for (_MorphInterpretation mi: interpsList) { |
56 | 56 | res.add(new MorphInterpretation(mi)); |
57 | 57 | } |
... | ... |