aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pdf
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-04-08 08:40:36 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-08 08:40:36 -0700
commit2ad228e8ff3ad7050c58d563879b9831c688e2f1 (patch)
tree222783b3c9e65c1f1485bc721f040e48b9620433 /src/pdf
parente4579adfdfb4b9f195d162835a69d9c2a974a6ac (diff)
SkPDF: Remove Array's unused set(i) and get(i) (leaving only append())
Diffstat (limited to 'src/pdf')
-rw-r--r--src/pdf/SkPDFTypes.cpp8
-rw-r--r--src/pdf/SkPDFTypes.h12
2 files changed, 0 insertions, 20 deletions
diff --git a/src/pdf/SkPDFTypes.cpp b/src/pdf/SkPDFTypes.cpp
index 89d6a0bc48..cd130cfc52 100644
--- a/src/pdf/SkPDFTypes.cpp
+++ b/src/pdf/SkPDFTypes.cpp
@@ -255,14 +255,6 @@ void SkPDFArray::reserve(int length) {
fValue.setReserve(length);
}
-SkPDFObject* SkPDFArray::setAt(int offset, SkPDFObject* value) {
- SkASSERT(offset < fValue.count());
- value->ref();
- fValue[offset]->unref();
- fValue[offset] = value;
- return value;
-}
-
SkPDFObject* SkPDFArray::append(SkPDFObject* value) {
SkASSERT(fValue.count() < kMaxLen);
value->ref();
diff --git a/src/pdf/SkPDFTypes.h b/src/pdf/SkPDFTypes.h
index dca96e4596..76e191134c 100644
--- a/src/pdf/SkPDFTypes.h
+++ b/src/pdf/SkPDFTypes.h
@@ -250,18 +250,6 @@ public:
*/
void reserve(int length);
- /** Returns the object at the given offset in the array.
- * @param index The index into the array to retrieve.
- */
- SkPDFObject* getAt(int index) { return fValue[index]; }
-
- /** Set the object at the given offset in the array. Ref's value.
- * @param index The index into the array to set.
- * @param value The value to add to the array.
- * @return The value argument is returned.
- */
- SkPDFObject* setAt(int index, SkPDFObject* value);
-
/** Append the object to the end of the array and increments its ref count.
* @param value The value to add to the array.
* @return The value argument is returned.