Stop saying "clazz".
Change-Id: I569a3d29f6a394ee40e6dbdb8f76ae9a60348b65
diff --git a/src/jdwp/jdwp_handler.cc b/src/jdwp/jdwp_handler.cc
index 804f683..fb2264a 100644
--- a/src/jdwp/jdwp_handler.cc
+++ b/src/jdwp/jdwp_handler.cc
@@ -1208,9 +1208,9 @@
break;
case MK_CLASS_ONLY: /* for ClassPrepare, MethodEntry */
{
- RefTypeId clazzId = ReadRefTypeId(&buf);
- VLOG(jdwp) << StringPrintf(" ClassOnly: %#llx (%s)", clazzId, Dbg::GetClassName(clazzId).c_str());
- mod.classOnly.refTypeId = clazzId;
+ RefTypeId classId = ReadRefTypeId(&buf);
+ VLOG(jdwp) << StringPrintf(" ClassOnly: %#llx (%s)", classId, Dbg::GetClassName(classId).c_str());
+ mod.classOnly.refTypeId = classId;
}
break;
case MK_CLASS_MATCH: /* restrict events to matching classes */