Skip to content

Commit df3c467

Browse files
committed
Checkstyle fixes
1 parent 604649d commit df3c467

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

core/spring-cloud-stream-test-support/src/main/java/org/springframework/cloud/stream/binder/AbstractBinderTests.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2013-2018 the original author or authors.
2+
* Copyright 2013-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -60,6 +60,7 @@
6060
* @author Oleg Zhurakousky
6161
* @author Jacob Severson
6262
* @author Artem Bilan
63+
* @author Soby Chacko
6364
*/
6465
// @checkstyle:off
6566
@SuppressWarnings("unchecked")
@@ -440,11 +441,11 @@ public void setReadings(List<Readings> readings) {
440441
@SuppressWarnings("serial")
441442
public static class Readings implements Serializable {
442443

443-
public String stationid;
444+
private String stationid;
444445

445-
public String customerid;
446+
private String customerid;
446447

447-
public String timestamp;
448+
private String timestamp;
448449

449450
public String getStationid() {
450451
return this.stationid;

0 commit comments

Comments
 (0)