8159530: recent compiler change results in compile error in JapaneseDate.java

Reviewed-by: darcy
This commit is contained in:
Vicente Romero 2016-06-14 18:19:54 -07:00
parent 5aad7937b7
commit ec6f5c4bf7

View File

@ -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 @@ public final class JapaneseDate
field == ALIGNED_WEEK_OF_MONTH || field == ALIGNED_WEEK_OF_YEAR) {
return false;
}
return ChronoLocalDate.super.isSupported(field);
return super.isSupported(field);
}
@Override