Merge pull request #2 from kemitix/fix-javadoc

Add missing javadoc tags
This commit is contained in:
Paul Campbell 2020-03-29 11:55:46 +01:00 committed by GitHub
commit c35aa53656
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -11,6 +11,7 @@ public interface FileReader {
* be replaced with a newline (\n).</p>
*
* @param file the file to read
* @return the contents of the file
* @throws IOException if there is an error.
*/
String read(File file) throws IOException;

View file

@ -13,6 +13,7 @@ public interface FileWriter {
*
* @param file the file to write
* @param content the content to write
* @throws IOException if there is an error.
*/
void write(
File file,