Skip to content

Commit

Permalink
8215571: jdb does not include jdk.* in the default class filter
Browse files Browse the repository at this point in the history
Reviewed-by: alanb, cjplummer
  • Loading branch information
Gary Adams committed Dec 21, 2018
1 parent ae369f4 commit 203f6ad
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

0 comments on commit 203f6ad

Please sign in to comment.