treewide: make TableNames abstract

This commit is contained in:
Oystein Kristoffer Tveit 2025-04-15 14:26:31 +02:00
parent 9ed8ea2f7f
commit 555eedd772
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 2 additions and 2 deletions
lib

@ -1,7 +1,7 @@
import 'package:jadb/objects.dart';
class TableNames {
abstract class TableNames {
static const String entry = 'JMdict_Entry';
static const String entryByKana = 'JMdict_EntryByKana';
static const String entryByEnglish = 'JMdict_EntryByEnglish';

@ -1,6 +1,6 @@
import 'package:jadb/objects.dart';
class TableNames {
abstract class TableNames {
static const String character = 'KANJIDIC_Character';
static const String radicalName = 'KANJIDIC_RadicalName';
static const String codepoint = 'KANJIDIC_Codepoint';