Removed TODO comments

This commit is contained in:
Trishaan committed 2025-09-28 23:08:32 -07:00
1 parent c0050a6a31
commit 804a7619fe
2 files changed
-3

No files matched your search

@@ -22,7 +22,6 @@ public abstract class IDevice {
*/ */
public IDevice(final String purpose) { public IDevice(final String purpose) {
// TODO: validate String inputs
stringValidator(purpose, stringValidator(purpose,
MIN_PURPOSE_CHARACTER, MIN_PURPOSE_CHARACTER,
MAX_PURPOSE_CHARACTER); MAX_PURPOSE_CHARACTER);
@@ -27,8 +27,6 @@ public class IPad extends IDevice {
final String OSVersion final String OSVersion
) { ) {
super("learning"); super("learning");
// TODO: validate String inputs
this.hasCase = hasCase; this.hasCase = hasCase;
stringValidator(OSVersion, stringValidator(OSVersion,
MIN_OSVERSION_CHARACTERS, MIN_OSVERSION_CHARACTERS,