Skip to content

Commit 45d50b2

Browse files
committed
make the methods for accessing/setting username/password package private
1 parent 3d20890 commit 45d50b2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/history/RepositoryInfo.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,19 +163,19 @@ public void setHistoryEnabled(boolean flag) {
163163
this.historyEnabled = flag;
164164
}
165165

166-
public String getUsername() {
166+
String getUsername() {
167167
return username;
168168
}
169169

170-
public void setUsername(String username) {
170+
void setUsername(String username) {
171171
this.username = username;
172172
}
173173

174-
public String getPassword() {
174+
String getPassword() {
175175
return password;
176176
}
177177

178-
public void setPassword(String password) {
178+
void setPassword(String password) {
179179
this.password = password;
180180
}
181181

0 commit comments

Comments
 (0)