We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09e5ce0 commit 9aa4024Copy full SHA for 9aa4024
1 file changed
gpclient/gpclient-core/src/main/java/org/epics/gpclient/ReadCollector.java
@@ -37,7 +37,7 @@ public O get() {
37
*
38
* @param type the type of values collected; can't be null
39
*/
40
- ReadCollector(Class<I> type) {
+ protected ReadCollector(Class<I> type) {
41
if (type == null) {
42
throw new NullPointerException("Type can't be null");
43
}
@@ -71,7 +71,7 @@ Supplier<O> getReadFunction() {
71
72
* @return the new value
73
74
- abstract O getValue();
+ protected abstract O getValue();
75
76
/**
77
* The current connection state.
0 commit comments