Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8215571: jdb does not include jdk.* in the default class filter
Backport-of: 203f6ad
  • Loading branch information
GoeLin committed Oct 10, 2022
1 parent 9014a18 commit 3fbcd78
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -108,7 +108,7 @@ static String getSourcePath() {

static private List<String> excludes() {
if (excludes == null) {
setExcludes("java.*, javax.*, sun.*, com.sun.*");
setExcludes("java.*, javax.*, sun.*, com.sun.*, jdk.*");
}
return excludes;
}
Expand Down

1 comment on commit 3fbcd78

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.