diff options
author | 2017-09-22 10:56:22 +0000 | |
---|---|---|
committer | 2017-09-22 10:56:22 +0000 | |
commit | 290d692e518f44fbc1fa9ef05a8f468d37510462 (patch) | |
tree | 36294dac425bf662a9db88ab796d790d842728b5 /tools/ahat/src/heapdump/DiffedFieldValue.java | |
parent | 79bbbc1c9c40478ccf752214da9574dd22cd8b02 (diff) | |
parent | 26a982ad022a254ac57f84e996c31b4e271de028 (diff) |
Merge changes I9a71ea46,Ib14c294a,Id91c2be4,I3fa77e2e
* changes:
Remove last remaining guava dependencies.
Use a custom parser implementation instead of perflib.
Remove perflib-based native allocation registry identification.
ahat: Expand test coverage using static heap dumps.
Diffstat (limited to 'tools/ahat/src/heapdump/DiffedFieldValue.java')
-rw-r--r-- | tools/ahat/src/heapdump/DiffedFieldValue.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ahat/src/heapdump/DiffedFieldValue.java b/tools/ahat/src/heapdump/DiffedFieldValue.java index e2dcf3e8f0..3cd273ed98 100644 --- a/tools/ahat/src/heapdump/DiffedFieldValue.java +++ b/tools/ahat/src/heapdump/DiffedFieldValue.java @@ -23,7 +23,7 @@ import java.util.Objects; */ public class DiffedFieldValue { public final String name; - public final String type; + public final Type type; public final Value current; public final Value baseline; @@ -60,7 +60,7 @@ public class DiffedFieldValue { return new DiffedFieldValue(baseline.name, baseline.type, null, baseline.value, Status.DELETED); } - private DiffedFieldValue(String name, String type, Value current, Value baseline, Status status) { + private DiffedFieldValue(String name, Type type, Value current, Value baseline, Status status) { this.name = name; this.type = type; this.current = current; |