Skip to content

Commit

Permalink
[refactor] remove extra switch case
Browse files Browse the repository at this point in the history
  • Loading branch information
ylht committed Dec 25, 2023
1 parent 6a35638 commit 5cb0d27
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ public BoolExprNode deserialize(JsonParser parser, DeserializationContext deseri
case UNI_FILTER_OPERATION -> mapper.readValue(node.toString(), UniVarFilterOperation.class);
case MULTI_FILTER_OPERATION -> mapper.readValue(node.toString(), MultiVarFilterOperation.class);
case ISNULL_FILTER_OPERATION -> mapper.readValue(node.toString(), IsNullFilterOperation.class);
default -> throw new IOException(String.format("无法识别的BoolExpr数据 %s", node));
};
}
}
Expand Down

0 comments on commit 5cb0d27

Please sign in to comment.