diff options
author | Ian Pedowitz <ijpedowitz@google.com> | 2020-07-22 14:33:00 -0700 |
---|---|---|
committer | Ian Pedowitz <ijpedowitz@google.com> | 2020-07-24 00:41:56 +0000 |
commit | 2d53643ca0e05e7c67894aa75eba899acbb9f287 (patch) | |
tree | 39299475c04303312f527bc00355bd9fd7a3fad8 /openjdkjvmti | |
parent | cefebc86af30522bf79d2a89a2bcf96f7f970ecb (diff) |
Update language to comply with Android’s inclusive language guidance
See https://source.android.com/setup/contribute/respectful-code for
reference
Bug: 161896447
Bug: 161850439
Bug: 161336379
Test: m -j checkbuild cts docs tests
Change-Id: I32d869c274a5d9a3dac63221e25874fe685d38c4
Diffstat (limited to 'openjdkjvmti')
-rw-r--r-- | openjdkjvmti/ti_class.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openjdkjvmti/ti_class.cc b/openjdkjvmti/ti_class.cc index 4d6b41a386..c22f38f576 100644 --- a/openjdkjvmti/ti_class.cc +++ b/openjdkjvmti/ti_class.cc @@ -661,7 +661,7 @@ jvmtiError ClassUtil::GetImplementedInterfaces(jvmtiEnv* env, // spec says these should not be reported. if (klass->IsArrayClass()) { *interface_count_ptr = 0; - *interfaces_ptr = nullptr; // TODO: Should we allocate a dummy here? + *interfaces_ptr = nullptr; // TODO: Should we allocate a placeholder here? return ERR(NONE); } |