1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

rename ErrorProp to Error

This commit is contained in:
fangjian0423 2019-01-11 13:50:58 +08:00
parent 9bb5235e5f
commit 217599102e

View File

@ -52,9 +52,9 @@ public class RocketMQConsumerProperties {
private Boolean enabled = true;
private ErrorProp error;
private Error error;
public static class ErrorProp {
public static class Error {
/**
* Reconsume later timeMillis in ConsumeOrderlyContext.
@ -126,11 +126,11 @@ public class RocketMQConsumerProperties {
this.broadcasting = broadcasting;
}
public ErrorProp getError() {
public Error getError() {
return error;
}
public void setError(ErrorProp error) {
public void setError(Error error) {
this.error = error;
}
}