mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-10 21:43:15 +08:00
style: enable HideUtilityClassConstructor
in checkstyle (#5147)
This commit is contained in:
@ -2,7 +2,9 @@ package com.thealgorithms.searches;
|
||||
|
||||
import java.util.Scanner;
|
||||
|
||||
public class LinearSearchThread {
|
||||
public final class LinearSearchThread {
|
||||
private LinearSearchThread() {
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
int[] list = new int[200];
|
||||
|
Reference in New Issue
Block a user