8308735: Typos in parameter names
Reviewed-by: naoto, iris, bpb
This commit is contained in:
parent
4f096eb7c9
commit
38367d3c3a
src/java.base/share/classes/java/time/chrono
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2012, 2023, 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
|
||||
@ -632,8 +632,8 @@ public final class JapaneseDate
|
||||
}
|
||||
|
||||
@Override
|
||||
public JapaneseDate minus(long amountToAdd, TemporalUnit unit) {
|
||||
return super.minus(amountToAdd, unit);
|
||||
public JapaneseDate minus(long amountToSubtract, TemporalUnit unit) {
|
||||
return super.minus(amountToSubtract, unit);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2012, 2023, 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
|
||||
@ -393,8 +393,8 @@ public final class MinguoDate
|
||||
}
|
||||
|
||||
@Override
|
||||
public MinguoDate minus(long amountToAdd, TemporalUnit unit) {
|
||||
return super.minus(amountToAdd, unit);
|
||||
public MinguoDate minus(long amountToSubtract, TemporalUnit unit) {
|
||||
return super.minus(amountToSubtract, unit);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2012, 2023, 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
|
||||
@ -395,8 +395,8 @@ public final class ThaiBuddhistDate
|
||||
}
|
||||
|
||||
@Override
|
||||
public ThaiBuddhistDate minus(long amountToAdd, TemporalUnit unit) {
|
||||
return super.minus(amountToAdd, unit);
|
||||
public ThaiBuddhistDate minus(long amountToSubtract, TemporalUnit unit) {
|
||||
return super.minus(amountToSubtract, unit);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
x
Reference in New Issue
Block a user