Skip to content

Commit 79fb155

Browse files
committed
refactor: drop underscore prefix from member fields
Renames public/protected fields in internal helper/struct classes (IndexPageCache, QueryImpl, Expressionator, CursorImpl, etc.) and private fields in DataType and the builder classes away from the leading-underscore convention, without introducing getters where access stays internal to the class/package.
1 parent 5c63643 commit 79fb155

95 files changed

Lines changed: 3513 additions & 3509 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/main/java/io/github/spannm/jackcess/BatchUpdateException.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@
2323
public class BatchUpdateException extends JackcessException {
2424
private static final long serialVersionUID = 20131123L;
2525

26-
private final int _updateCount;
26+
private final int updateCount;
2727

2828
public BatchUpdateException(int updateCount, String msg, Throwable cause) {
2929
super(msg + ": " + cause, cause);
30-
_updateCount = updateCount;
30+
this.updateCount = updateCount;
3131
}
3232

3333
public int getUpdateCount() {
34-
return _updateCount;
34+
return updateCount;
3535
}
3636
}

0 commit comments

Comments
 (0)