OSDN Git Service

ART: Remove stale TODOs
authorAndreas Gampe <agampe@google.com>
Fri, 24 Feb 2017 01:31:42 +0000 (17:31 -0800)
committerAndreas Gampe <agampe@google.com>
Fri, 24 Feb 2017 01:31:42 +0000 (17:31 -0800)
Remove a number of now stale TODOs.

Bug: 31455788
Test: m
Change-Id: I2ec22604b71817f34427bbc8e996ba01b686191b

runtime/openjdkjvmti/ti_field.cc
runtime/openjdkjvmti/ti_phase.cc
runtime/openjdkjvmti/ti_search.cc

index 8c3f2ff..1e5fbda 100644 (file)
@@ -88,7 +88,6 @@ jvmtiError FieldUtil::GetFieldName(jvmtiEnv* env,
     *signature_ptr = signature_copy.get();
   }
 
-  // TODO: Support generic signature.
   if (generic_ptr != nullptr) {
     *generic_ptr = nullptr;
     if (!art_field->GetDeclaringClass()->IsProxyClass()) {
index 60371cf..e494cb6 100644 (file)
@@ -56,7 +56,6 @@ struct PhaseUtil::PhaseCallback : public art::RuntimePhaseCallback {
   }
 
   void NextRuntimePhase(RuntimePhase phase) REQUIRES_SHARED(art::Locks::mutator_lock_) OVERRIDE {
-    // TODO: Events.
     switch (phase) {
       case RuntimePhase::kInitialAgents:
         PhaseUtil::current_phase_ = JVMTI_PHASE_PRIMORDIAL;
index df80f85..f51a98f 100644 (file)
@@ -212,7 +212,6 @@ jvmtiError SearchUtil::AddToBootstrapClassLoaderSearch(jvmtiEnv* env ATTRIBUTE_U
     return ERR(WRONG_PHASE);
   }
   if (current->GetClassLinker() == nullptr) {
-    // TODO: Support boot classpath change in OnLoad.
     return ERR(WRONG_PHASE);
   }
   if (segment == nullptr) {