Skip to content

Commit 3324bc6

Browse files
committed
Fix linting
- Some classes had incorrect linting that has been fixed
1 parent 3836472 commit 3324bc6

File tree

9 files changed

+12
-21
lines changed

9 files changed

+12
-21
lines changed

src/main/java/org/phoebus/channelfinder/rest/controller/ChannelProcessorController.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727

2828
@RestController
2929
@EnableAutoConfiguration
30-
public class ChannelProcessorController
31-
implements IChannelProcessor {
30+
public class ChannelProcessorController implements IChannelProcessor {
3231

3332
private static final Logger logger = Logger.getLogger(ChannelProcessorController.class.getName());
3433

src/test/java/org/phoebus/channelfinder/ChannelControllerIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
@TestPropertySource(value = "classpath:application_test.properties")
3535
class ChannelControllerIT {
3636

37-
@Autowired
38-
IChannel channelManager;
37+
@Autowired IChannel channelManager;
3938

4039
@Autowired TagRepository tagRepository;
4140

src/test/java/org/phoebus/channelfinder/ChannelScrollControllerSearchIT.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
@TestPropertySource(value = "classpath:application_test.properties")
2828
class ChannelScrollControllerSearchIT {
2929

30-
private static final Logger logger = Logger.getLogger(ChannelScrollControllerSearchIT.class.getName());
30+
private static final Logger logger =
31+
Logger.getLogger(ChannelScrollControllerSearchIT.class.getName());
3132

3233
@Autowired IChannelScroll channelScroll;
3334

src/test/java/org/phoebus/channelfinder/ChannelValidationIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
@TestPropertySource(value = "classpath:application_test.properties")
3232
class ChannelValidationIT {
3333

34-
@Autowired
35-
IChannel channelManager;
34+
@Autowired IChannel channelManager;
3635

3736
@Autowired TagRepository tagRepository;
3837

src/test/java/org/phoebus/channelfinder/PropertyControllerIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@
3737
@TestPropertySource(value = "classpath:application_test.properties")
3838
class PropertyControllerIT {
3939

40-
@Autowired
41-
IProperty propertyManager;
40+
@Autowired IProperty propertyManager;
4241

4342
@Autowired PropertyRepository propertyRepository;
4443

src/test/java/org/phoebus/channelfinder/PropertyValidationIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
@TestPropertySource(value = "classpath:application_test.properties")
2929
class PropertyValidationIT {
3030

31-
@Autowired
32-
IProperty propertyManager;
31+
@Autowired IProperty propertyManager;
3332

3433
@Autowired ChannelRepository channelRepository;
3534

src/test/java/org/phoebus/channelfinder/TagControllerIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@
3939
@TestPropertySource(value = "classpath:application_test.properties")
4040
class TagControllerIT {
4141

42-
@Autowired
43-
ITag tagManager;
42+
@Autowired ITag tagManager;
4443

4544
@Autowired TagRepository tagRepository;
4645

src/test/java/org/phoebus/channelfinder/TagValidationIT.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
@TestPropertySource(value = "classpath:application_test.properties")
2828
class TagValidationIT {
2929

30-
@Autowired
31-
ITag tagManager;
30+
@Autowired ITag tagManager;
3231

3332
@Autowired ElasticConfig esService;
3433
@Autowired ChannelRepository channelRepository;

src/test/java/org/phoebus/channelfinder/epics/EpicsRPCRequestIT.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,11 @@ public static void cleanup() {
6161
pvaClient.getChannel(ChannelFinderEpicsService.SERVICE_DESC);
6262
;
6363

64-
@Autowired
65-
IChannel channelManager;
64+
@Autowired IChannel channelManager;
6665

67-
@Autowired
68-
IProperty propertyManager;
66+
@Autowired IProperty propertyManager;
6967

70-
@Autowired
71-
ITag tagManager;
68+
@Autowired ITag tagManager;
7269

7370
@Test
7471
void testRPCService() throws ExecutionException, InterruptedException, TimeoutException {

0 commit comments

Comments
 (0)