Closed kazurayam closed 1 year ago
I have this code:
/**
* run the dot command of Graphviz in command line
*/
public static int runDotCommand(Path dotFile, Path outFile) throws MaterialstoreException {
For this, I got the folllowing warning:
/Users/kazuakiurayama/github/materialstore/diagram/src/main/java/com/kazurayam/materialstore/diagram/dot/DotGenerator.java:371:
警告: no @rows for com.kazurayam.materialstore.core.filesystem.MaterialstoreException
public static int runDotCommand(Path dotFile, Path outFile) throws MaterialstoreException {
^
How to fix this warning?
Answer: change the Javadoc comment
to normal comment
:
From this:
/**
* xxxxx
*/
To this:
/*
* xxxxx
*/
done 0.12.4
This emits hundreds of lines of errors. I will remove incomplete javadoc comments tentatively to reduce the errors. Of couse I would write good javadoc comments in future.