8308735: Typos in parameter names

Reviewed-by: naoto, iris, bpb
This commit is contained in:
Pavel Rappo 2023-05-25 10:22:41 +00:00
parent 4f096eb7c9
commit 38367d3c3a
3 changed files with 9 additions and 9 deletions

View file

@ -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. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -632,8 +632,8 @@ public final class JapaneseDate
} }
@Override @Override
public JapaneseDate minus(long amountToAdd, TemporalUnit unit) { public JapaneseDate minus(long amountToSubtract, TemporalUnit unit) {
return super.minus(amountToAdd, unit); return super.minus(amountToSubtract, unit);
} }
@Override @Override

View file

@ -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. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -393,8 +393,8 @@ public final class MinguoDate
} }
@Override @Override
public MinguoDate minus(long amountToAdd, TemporalUnit unit) { public MinguoDate minus(long amountToSubtract, TemporalUnit unit) {
return super.minus(amountToAdd, unit); return super.minus(amountToSubtract, unit);
} }
@Override @Override

View file

@ -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. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -395,8 +395,8 @@ public final class ThaiBuddhistDate
} }
@Override @Override
public ThaiBuddhistDate minus(long amountToAdd, TemporalUnit unit) { public ThaiBuddhistDate minus(long amountToSubtract, TemporalUnit unit) {
return super.minus(amountToAdd, unit); return super.minus(amountToSubtract, unit);
} }
@Override @Override