Skip to content

Commit 8968981

Browse files
yegor256claude
andcommitted
ci: rename misspelled ctor parameter
The `typos` check rejected `bse` in `LSInputOf`. The parameter stands for the base URI and cannot be called `base` without hiding the field, so it takes the name `uri`, which `setBaseURI()` already uses for the same thing. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 71fa2a3 commit 8968981

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/cactoos/io/LSInputOf.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ public LSInputOf(final Input data) {
5555
* @param data Input
5656
* @param pubid PublicID
5757
* @param sysid SystemID
58-
* @param bse Base
58+
* @param uri Base URI
5959
*/
6060
public LSInputOf(final Input data, final String pubid,
61-
final String sysid, final String bse) {
61+
final String sysid, final String uri) {
6262
this.input = data;
6363
this.pid = pubid;
6464
this.sid = sysid;
65-
this.base = bse;
65+
this.base = uri;
6666
}
6767

6868
@Override

0 commit comments

Comments
 (0)