summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/IDBCursor.cpp
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-05-04 16:15:59 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-05-04 16:15:59 +0200
commit33c8d5d9714ecf3a2730b3c509bd05d4fcf85ce4 (patch)
treedc4a08a681ddc451fbe27a20899749ec30a1dc2b /dom/indexedDB/IDBCursor.cpp
parente6bb58fb96a16d6b447e18957393b65e715c3383 (diff)
downloadUXP-33c8d5d9714ecf3a2730b3c509bd05d4fcf85ce4.tar
UXP-33c8d5d9714ecf3a2730b3c509bd05d4fcf85ce4.tar.gz
UXP-33c8d5d9714ecf3a2730b3c509bd05d4fcf85ce4.tar.lz
UXP-33c8d5d9714ecf3a2730b3c509bd05d4fcf85ce4.tar.xz
UXP-33c8d5d9714ecf3a2730b3c509bd05d4fcf85ce4.zip
Issue #325 Part 7: Remove non-Intl legacy code paths from IndexedDB.
Diffstat (limited to 'dom/indexedDB/IDBCursor.cpp')
-rw-r--r--dom/indexedDB/IDBCursor.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/dom/indexedDB/IDBCursor.cpp b/dom/indexedDB/IDBCursor.cpp
index e5d8913f9..7ae35e981 100644
--- a/dom/indexedDB/IDBCursor.cpp
+++ b/dom/indexedDB/IDBCursor.cpp
@@ -65,13 +65,11 @@ IDBCursor::IDBCursor(Type aType,
}
}
-#ifdef ENABLE_INTL_API
bool
IDBCursor::IsLocaleAware() const
{
return mSourceIndex && !mSourceIndex->Locale().IsEmpty();
}
-#endif
IDBCursor::~IDBCursor()
{
@@ -437,7 +435,6 @@ IDBCursor::Continue(JSContext* aCx,
return;
}
-#ifdef ENABLE_INTL_API
if (IsLocaleAware() && !key.IsUnset()) {
Key tmp;
aRv = key.ToLocaleBasedKey(tmp, mSourceIndex->Locale());
@@ -448,9 +445,6 @@ IDBCursor::Continue(JSContext* aCx,
}
const Key& sortKey = IsLocaleAware() ? mSortKey : mKey;
-#else
- const Key& sortKey = mKey;
-#endif
if (!key.IsUnset()) {
switch (mDirection) {
@@ -547,7 +541,6 @@ IDBCursor::ContinuePrimaryKey(JSContext* aCx,
return;
}
-#ifdef ENABLE_INTL_API
if (IsLocaleAware() && !key.IsUnset()) {
Key tmp;
aRv = key.ToLocaleBasedKey(tmp, mSourceIndex->Locale());
@@ -558,9 +551,6 @@ IDBCursor::ContinuePrimaryKey(JSContext* aCx,
}
const Key& sortKey = IsLocaleAware() ? mSortKey : mKey;
-#else
- const Key& sortKey = mKey;
-#endif
if (key.IsUnset()) {
aRv.Throw(NS_ERROR_DOM_INDEXEDDB_DATA_ERR);