test/langtools/tools/javac/lib/DPrinter.java
changeset 53515 a772e65727c5
parent 51563 de411d537aae
child 55306 ea43db53de91
child 58678 9cf78a70fa4f
--- a/test/langtools/tools/javac/lib/DPrinter.java	Fri Jan 25 18:43:02 2019 -0800
+++ b/test/langtools/tools/javac/lib/DPrinter.java	Sat Jan 26 15:50:59 2019 +0100
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013, 2019, 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
@@ -1336,8 +1336,8 @@
             // null or bot. So, only print the bound for subtypes of TypeVar,
             // or if the bound is (erroneously) not null or bot.
             if (!type.hasTag(TypeTag.TYPEVAR)
-                    || !(type.bound == null || type.bound.hasTag(TypeTag.BOT))) {
-                printType("bound", type.bound, Details.FULL);
+                    || !(type.getUpperBound() == null || type.getUpperBound().hasTag(TypeTag.BOT))) {
+                printType("bound", type.getUpperBound(), Details.FULL);
             }
             printType("lower", type.lower, Details.FULL);
             return visitType(type, null);