[mifdoclet (1.2)] problem with ArrayList<>
Hello,
I am trying to get mifdoclet running to generate documentation in pdf.
I get an error for each ArrayList<SomeClass> that there is in my source code:
Rules.java:21: <identifier> expected
privatestatic ArrayList<Move> legalMovesNonCapture;
^
Rules.java:49:'(' or'[' expected
legalMovesNonCapture =new ArrayList<Move>();
^
Rules.java:337: <identifier> expected
publicstatic ArrayList<Move> getLegalMovesNonCapture(){
^
...
I don't have that problem when running javadoc. Where does that come from? Have I done something wrong?
Thanks for your help.

