cpplint: Remove many unnecessary NOLINT

Now that we updated to upstream cpplint, a lot of these NOLINTs are no
longer necessary.

Bug: 68951293
Change-Id: If8ed5ffe89727f313f907a214b6d8fd2a2eddbad
diff --git a/openjdkjvmti/jvmti_allocator.h b/openjdkjvmti/jvmti_allocator.h
index e6cbc85..11af7b6 100644
--- a/openjdkjvmti/jvmti_allocator.h
+++ b/openjdkjvmti/jvmti_allocator.h
@@ -58,7 +58,7 @@
   JvmtiAllocator() : env_(nullptr) {}
 
   template <typename U>
-  JvmtiAllocator(const JvmtiAllocator<U>& other)  // NOLINT, implicit
+  JvmtiAllocator(const JvmtiAllocator<U>& other)
       : env_(other.env_) {}
 
   JvmtiAllocator(const JvmtiAllocator& other) = default;
@@ -95,7 +95,7 @@
   JvmtiAllocator() : env_(nullptr) {}
 
   template <typename U>
-  JvmtiAllocator(const JvmtiAllocator<U>& other)  // NOLINT, implicit
+  JvmtiAllocator(const JvmtiAllocator<U>& other)
       : env_(other.env_) {}
 
   JvmtiAllocator(const JvmtiAllocator& other) = default;