From 4c7c7845d3a7928d23f14d0bdb00d620b268f148 Mon Sep 17 00:00:00 2001 From: stelar7 Date: Tue, 13 May 2025 23:10:31 +0200 Subject: [PATCH] LibWeb/IDB: Remove outdated FIXME --- Libraries/LibWeb/IndexedDB/IDBDatabase.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Libraries/LibWeb/IndexedDB/IDBDatabase.h b/Libraries/LibWeb/IndexedDB/IDBDatabase.h index fa25b082dd4..591ad320cef 100644 --- a/Libraries/LibWeb/IndexedDB/IDBDatabase.h +++ b/Libraries/LibWeb/IndexedDB/IDBDatabase.h @@ -31,8 +31,6 @@ struct IDBTransactionOptions { Bindings::IDBTransactionDurability durability = Bindings::IDBTransactionDurability::Default; }; -// FIXME: I'm not sure if this object should do double duty as both the connection and the interface -// but the spec treats it as such...? // https://w3c.github.io/IndexedDB/#IDBDatabase-interface // https://www.w3.org/TR/IndexedDB/#database-connection class IDBDatabase : public DOM::EventTarget {