summaryrefslogtreecommitdiff
path: root/indra/llcommon/resultset.cpp
diff options
context:
space:
mode:
authornat-goodspeed <nat@lindenlab.com>2024-10-29 10:16:17 -0400
committerGitHub <noreply@github.com>2024-10-29 10:16:17 -0400
commit151a319034bbececc7d7ef115289d9f66d7ace66 (patch)
tree03cd743db4959f7f15e3886dff4291c9a128ff54 /indra/llcommon/resultset.cpp
parentc5b499f3345bda4f97099793a5b9b4bcfffa0176 (diff)
parent541b44b873738a6b954125b31bca5f18c328bade (diff)
Merge pull request #2940 from secondlife/nat/vector-resultset
Add LL::ResultSet subclass VectorResultSet for the simple case.
Diffstat (limited to 'indra/llcommon/resultset.cpp')
-rw-r--r--indra/llcommon/resultset.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/indra/llcommon/resultset.cpp b/indra/llcommon/resultset.cpp
index 4d7b00eabd..8bdfbec272 100644
--- a/indra/llcommon/resultset.cpp
+++ b/indra/llcommon/resultset.cpp
@@ -61,20 +61,6 @@ LLSD ResultSet::getSlice(int index, int count) const
return getSliceStart(index, count).first;
}
-/*==========================================================================*|
-LLSD ResultSet::getSingle(int index) const
-{
- if (0 <= index && index < getLength())
- {
- return getSingle_(index);
- }
- else
- {
- return {};
- }
-}
-|*==========================================================================*/
-
ResultSet::ResultSet(const std::string& name):
mName(name)
{