From 0afd4539fc49d43f379a24e8b4ce6609cd2a503b Mon Sep 17 00:00:00 2001 From: Janak Ramakrishnan Date: Mon, 24 Aug 2015 17:27:48 +0000 Subject: Return raw SkyValue instead of wrapped ValueWithMetadata. -- MOS_MIGRATED_REVID=101377320 --- .../com/google/devtools/build/skyframe/NotifyingInMemoryGraph.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/test/java/com/google/devtools/build/skyframe') diff --git a/src/test/java/com/google/devtools/build/skyframe/NotifyingInMemoryGraph.java b/src/test/java/com/google/devtools/build/skyframe/NotifyingInMemoryGraph.java index f327fc5856..0adaabb339 100644 --- a/src/test/java/com/google/devtools/build/skyframe/NotifyingInMemoryGraph.java +++ b/src/test/java/com/google/devtools/build/skyframe/NotifyingInMemoryGraph.java @@ -135,9 +135,9 @@ public class NotifyingInMemoryGraph extends InMemoryGraph { } @Override - public ValueWithMetadata getValueWithMetadata() { + public SkyValue getValueMaybeWithMetadata() { graphListener.accept(myKey, EventType.GET_VALUE_WITH_METADATA, Order.BEFORE, this); - return super.getValueWithMetadata(); + return super.getValueMaybeWithMetadata(); } } } -- cgit v1.2.3