Skip to content

Commit

Permalink
fix(client): When calling the 'kneigbor' interface and returning the …
Browse files Browse the repository at this point in the history
…result, scenarios where 'withPath' is' true 'and' false 'are incompatible (apache#43)
  • Loading branch information
lijie0203 committed Nov 26, 2024
1 parent 4b89c5d commit e00fec5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Kneighbor {
@JsonProperty
private Set<Vertex> vertices;
@JsonProperty
private Set<Edge> edges;
private Set<?> edges;
@JsonProperty
private ApiMeasure measure;

Expand All @@ -57,7 +57,7 @@ public Set<Vertex> vertices() {
return this.vertices;
}

public Set<Edge> edges() {
public Set<?> edges() {
return this.edges;
}

Expand Down

0 comments on commit e00fec5

Please sign in to comment.