plantuml-lgpl-1.2019.0.tar.gz does not compile

0 votes
asked Jan 22, 2019 in Bug by jsafrane (140 points)

plantuml-lgpl-1.2019.0.tar.gz does not compile:

    [javac] /builddir/build/BUILD/plantuml/src/net/sourceforge/plantuml/stats/StatsUtilsIncrement.java:123: error: cannot find symbol
    [javac] 		if (type == PSystemSudoku.class) {
    [javac] 		            ^
    [javac]   symbol:   class PSystemSudoku
    [javac]   location: class StatsUtilsIncrement
    [javac] /builddir/build/BUILD/plantuml/src/net/sourceforge/plantuml/stats/StatsUtilsIncrement.java:132: error: cannot find symbol
    [javac] 		if (type == PSystemDitaa.class) {
    [javac] 		            ^
    [javac]   symbol:   class PSystemDitaa
    [javac]   location: class StatsUtilsIncrement
    [javac] /builddir/build/BUILD/plantuml/src/net/sourceforge/plantuml/stats/StatsUtilsIncrement.java:135: error: cannot find symbol
    [javac] 		if (type == PSystemJcckit.class) {
    [javac] 		            ^
    [javac]   symbol:   class PSystemJcckit
    [javac]   location: class StatsUtilsIncrement
Indeed, PSystemJcckit, PSystemDitaa and PSystemSudoku are missing in the lgpl sources.

1 Answer

+1 vote
answered Jan 22, 2019 by plantuml (294,960 points)
Thanks for the feedback.

As quick workaround, you can download the patched file :

http://beta.plantuml.net/StatsUtilsIncrement.java

to replace the buggy file from the archive.

Tell us if it helps!
commented Feb 13, 2019 by jsafrane (140 points)
I tested plantuml-lgpl-1.2019.1.tar.gz and it compiles correctly. Thanks a lot for a quick fix.
...