Remove recommendation to use std::vector

Change-Id: I0da80a508eac43e4d631f42f541b26c915575dfd
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/590177
Commit-Queue: Herb Derby <herb@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
diff --git a/include/private/SkTDArray.h b/include/private/SkTDArray.h
index 7a1b5db..1b56266 100644
--- a/include/private/SkTDArray.h
+++ b/include/private/SkTDArray.h
@@ -104,9 +104,6 @@
 // SkTDArray<T> implements a std::vector-like array for raw data-only objects that do not require
 // construction or destruction. The constructor and destructor for T will not be called; T objects
 // will always be moved via raw memcpy. Newly created T objects will contain uninitialized memory.
-//
-// In most cases, std::vector<T> can provide a similar level of performance for POD objects when
-// used with appropriate care. In new code, consider std::vector<T> instead.
 template <typename T> class SkTDArray {
 public:
     SkTDArray() : fStorage{sizeof(T)} {}