Checkstyle fixes

This commit is contained in:
Marvin Scham
2023-05-23 07:29:55 +02:00
parent 4649b58859
commit 4a163f6c7e
15 changed files with 21 additions and 18 deletions

View File

@@ -3,7 +3,7 @@ package de.rwu.easydrop.data.connector;
/**
* Allows connecting to a SQLite Database.
*
* @todo implement
* TODO implement
*/
public class DatabaseConnector {

View File

@@ -1,6 +1,6 @@
/**
* Connectors for databases.
*
* @todo implement
* TODO implement
*/
package de.rwu.easydrop.data.connector;

View File

@@ -3,7 +3,7 @@ package de.rwu.easydrop.data.dao;
/**
* Product data access object.
*
* @todo implement
* TODO implement
*/
public class ProductDAO {

View File

@@ -1,6 +1,6 @@
/**
* Data access objects for business objects created from persistence.
*
* @todo implement
* TODO implement
*/
package de.rwu.easydrop.data.dao;

View File

@@ -1,7 +1,7 @@
package de.rwu.easydrop.data.model;
/**
* A Product
* A Product.
*
* @since 0.1.0
*/

View File

@@ -1,6 +1,6 @@
/**
* Business objects.
*
* @todo implement
* TODO implement
*/
package de.rwu.easydrop.data.model;

View File

@@ -1,6 +1,6 @@
/**
* Structure for business objects and persisting their info.
*
* @todo implement
* TODO implement
*/
package de.rwu.easydrop.data;