Skip to content

Commit

Permalink
[Update] Do not initialize coordinate and dimensions of Rectangle
Browse files Browse the repository at this point in the history
  • Loading branch information
kostobog committed Jan 5, 2024
1 parent f6dea5f commit 4f618b5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ public class Rectangle {
private URI uri;

@OWLDataProperty(iri = Vocabulary.s_p_x)
private Double x = -1.;
private Double x;
@OWLDataProperty(iri = Vocabulary.s_p_y)
private Double y = -1.;
private Double y;

@OWLDataProperty(iri = Vocabulary.s_p_width)
private Double width = -1.;
private Double width;
@OWLDataProperty(iri = Vocabulary.s_p_height)
private Double height = -1.;
private Double height;

public Rectangle() {
}
Expand Down

0 comments on commit 4f618b5

Please sign in to comment.