Skip to content

Commit 14ac63f

Browse files
committed
Merge pull request #7 from innokenty/master
Tiny code style fix
2 parents c8f5c6a + ac986b5 commit 14ac63f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/src/main/java/ru/qatools/gridrouter/config/RandomHostSelectionStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212
public class RandomHostSelectionStrategy implements HostSelectionStrategy {
1313

14-
<T extends WithCount> T selectRandom(List<T> elements) {
14+
protected <T extends WithCount> T selectRandom(List<T> elements) {
1515
List<T> copies = new ArrayList<>();
1616
for (T element : elements) {
1717
copies.addAll(nCopies(element.getCount(), element));

0 commit comments

Comments
 (0)