Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Johnson2019-11-15 16:04:16 +0000
committerAndrew Johnson2019-11-15 16:04:16 +0000
commit15db89cfa4a1813b08291cf234a225ef443df324 (patch)
treefaaa1f6ffa29715afddbeec36a9caa0105f6c04b
parentaab9340edd819746ee4ad5506d4a8ebb1e1f0082 (diff)
downloadorg.eclipse.mat-15db89cfa4a1813b08291cf234a225ef443df324.tar.gz
org.eclipse.mat-15db89cfa4a1813b08291cf234a225ef443df324.tar.xz
org.eclipse.mat-15db89cfa4a1813b08291cf234a225ef443df324.zip
552879: OQL enhancements for sub-selects, maps, context providers
Fix problems with collection classes only used on Unix Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=552879 Change-Id: I638e1de60a41aa6fef9ed7e8034d15344e1a3b44
-rw-r--r--plugins/org.eclipse.mat.api/src/org/eclipse/mat/internal/collectionextract/KnownCollectionInfo.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/org.eclipse.mat.api/src/org/eclipse/mat/internal/collectionextract/KnownCollectionInfo.java b/plugins/org.eclipse.mat.api/src/org/eclipse/mat/internal/collectionextract/KnownCollectionInfo.java
index c5345348..2182f4ce 100644
--- a/plugins/org.eclipse.mat.api/src/org/eclipse/mat/internal/collectionextract/KnownCollectionInfo.java
+++ b/plugins/org.eclipse.mat.api/src/org/eclipse/mat/internal/collectionextract/KnownCollectionInfo.java
@@ -157,6 +157,10 @@ public class KnownCollectionInfo implements ICollectionExtractorProvider
new CollectionExtractionInfo("java.lang.ProcessEnvironment$CheckedEntrySet", new WrapperMapExtractor("s")), //$NON-NLS-1$ //$NON-NLS-2$
new CollectionExtractionInfo("java.lang.ProcessEnvironment$CheckedKeySet", new WrapperMapExtractor("s")), //$NON-NLS-1$ //$NON-NLS-2$
new CollectionExtractionInfo("java.lang.ProcessEnvironment$CheckedValues", new WrapperMapExtractor("c")), //$NON-NLS-1$ //$NON-NLS-2$
+ new CollectionExtractionInfo("java.lang.ProcessEnvironment$StringEnvironment", new WrapperMapExtractor("m")), //$NON-NLS-1$ //$NON-NLS-2$
+ new CollectionExtractionInfo("java.lang.ProcessEnvironment$StringEntrySet", new WrapperMapExtractor("s")), //$NON-NLS-1$ //$NON-NLS-2$
+ new CollectionExtractionInfo("java.lang.ProcessEnvironment$StringKeySet", new WrapperMapExtractor("s")), //$NON-NLS-1$ //$NON-NLS-2$
+ new CollectionExtractionInfo("java.lang.ProcessEnvironment$StringValues", new WrapperMapExtractor("c")), //$NON-NLS-1$ //$NON-NLS-2$
new CollectionExtractionInfo("java.util.concurrent.ConcurrentHashMap$Segment", new HashMapCollectionExtractor("count", "table", "key", "value")), // //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$

Back to the top