kazurayam / materialstore

A domain-specific file system to store "materials" (screenshots, HTML, JSON, XML) collected during End-to-End testings using Selenium WebDriver etc. Features to make "diff" and compiling HTML reports are also included. This is written in pure Java8
Apache License 2.0
0 stars 0 forks source link

erase Javadoc compilation errors tentatively #360

Closed kazurayam closed 1 year ago

kazurayam commented 1 year ago
# gradle javadoc

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.

kazurayam commented 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
     */
kazurayam commented 1 year ago

done 0.12.4