8215571: jdb does not include jdk.* in the default class filter

Reviewed-by: alanb, cjplummer
This commit is contained in:
Gary Adams 2018-12-21 07:42:12 -05:00
parent ae369f40a4
commit 203f6ad99a

View File

@ -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
@ -108,7 +108,7 @@ class Env {
static private List<String> excludes() {
if (excludes == null) {
setExcludes("java.*, javax.*, sun.*, com.sun.*");
setExcludes("java.*, javax.*, sun.*, com.sun.*, jdk.*");
}
return excludes;
}