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/tools/breakpoint-logger/breakpoint_logger.cc b/tools/breakpoint-logger/breakpoint_logger.cc
index b48a178..2f8b682 100644
--- a/tools/breakpoint-logger/breakpoint_logger.cc
+++ b/tools/breakpoint-logger/breakpoint_logger.cc
@@ -383,7 +383,7 @@
return JNI_ERR;
}
- jvmtiCapabilities caps {}; // NOLINT [readability/braces]
+ jvmtiCapabilities caps{};
caps.can_generate_breakpoint_events = JNI_TRUE;
caps.can_get_line_numbers = JNI_TRUE;
caps.can_get_source_file_name = JNI_TRUE;
@@ -394,7 +394,7 @@
return JNI_ERR;
}
- jvmtiEventCallbacks callbacks {}; // NOLINT [readability/braces]
+ jvmtiEventCallbacks callbacks{};
callbacks.Breakpoint = &BreakpointCB;
callbacks.VMInit = &VMInitCB;