aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/skyframe/serialization/Memoizer.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/skyframe/serialization/Memoizer.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/skyframe/serialization/Memoizer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/skyframe/serialization/Memoizer.java b/src/main/java/com/google/devtools/build/lib/skyframe/serialization/Memoizer.java
index 234c74f7d7..71f7a405de 100644
--- a/src/main/java/com/google/devtools/build/lib/skyframe/serialization/Memoizer.java
+++ b/src/main/java/com/google/devtools/build/lib/skyframe/serialization/Memoizer.java
@@ -153,7 +153,7 @@ class Memoizer {
if (strategy == MemoizationStrategy.DO_NOT_MEMOIZE) {
// TODO(janakr): there is no reason this is limited to the DO_NOT_MEMOIZE case, but we don't
// memoize Strings, so putting the code here saves a tiny bit of work in the other cases. If
- // the StringCodec#getStrategy changes, this block of code will have to move.
+ // String's codec's #getStrategy changes, this block of code will have to move.
if (!maybeEmitString(context, obj, codec, codedOut)) {
codec.serialize(context, obj, codedOut);
}