Skip to content

Commit

Permalink
Don't check for a specific GC for ExcludeFromReferenceMap.
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhaeubl committed Apr 14, 2020
1 parent f33b274 commit 67d2737
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1244,7 +1244,7 @@ private static ReferenceMapEncoder.Input createReferenceMap(HostedType type) {
}

private static boolean excludeFromReferenceMap(HostedField field) {
return field.getAnnotation(ExcludeFromReferenceMap.class) != null && SubstrateOptions.UseCardRememberedSetHeap.getValue();
return field.getAnnotation(ExcludeFromReferenceMap.class) != null;
}

private void processFieldLocations() {
Expand Down

0 comments on commit 67d2737

Please sign in to comment.