Unnecessary interface modifier

This commit is contained in:
Lars Grefer
2019-08-09 00:42:35 +02:00
parent 40bee457f9
commit d9c1f03b84
23 changed files with 63 additions and 75 deletions

View File

@@ -27,21 +27,21 @@ public interface DocumentDao {
* @param element an unsaved element (the "id" will be updated after method is
* invoked)
*/
public void create(AbstractElement element);
void create(AbstractElement element);
/**
* Removes a file from the database for the specified element.
*
* @param file the file to remove (cannot be null)
*/
public void delete(File file);
void delete(File file);
/**
* Modifies a file in the database.
*
* @param file the file to update (cannot be null)
*/
public void update(File file);
void update(File file);
/**
* Locates elements in the database which appear under the presented directory
@@ -51,5 +51,5 @@ public interface DocumentDao {
* @return zero or more elements in the directory (an empty array may be returned -
* never null)
*/
public AbstractElement[] findElements(Directory directory);
AbstractElement[] findElements(Directory directory);
}

View File

@@ -27,5 +27,5 @@ public interface SecureDocumentDao extends DocumentDao {
/**
* @return all the usernames existing in the system.
*/
public String[] getUsers();
String[] getUsers();
}