8159530: recent compiler change results in compile error in JapaneseDate.java
Reviewed-by: darcy
--- a/jdk/src/java.base/share/classes/java/time/chrono/JapaneseDate.java Tue Jun 14 16:56:27 2016 -0700
+++ b/jdk/src/java.base/share/classes/java/time/chrono/JapaneseDate.java Tue Jun 14 18:19:54 2016 -0700
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2012, 2016, 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
@@ -437,7 +437,7 @@
field == ALIGNED_WEEK_OF_MONTH || field == ALIGNED_WEEK_OF_YEAR) {
return false;
}
- return ChronoLocalDate.super.isSupported(field);
+ return super.isSupported(field);
}
@Override