diff options
author | Emile <hanemile@protonmail.com> | 2019-02-05 21:16:31 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-02-05 21:16:31 +0100 |
commit | 560f64d9a6a0de578f37b62295816ba39c54ba2b (patch) | |
tree | 96c842f380d134f70635249ed963c80763982bf9 | |
parent | 0432eb77d03343425c7d35e15d43b459db18fbe5 (diff) |
removed an unnecessary return values
-rw-r--r-- | star.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/star.go b/star.go index a35f1de..8456144 100644 --- a/star.go +++ b/star.go @@ -98,12 +98,11 @@ func (star Star2D) getRelativePosition(boundary BoundingBox) string { return "NE" } return "SE" - } else { - if star.posY(boundary) == true { - return "NW" - } - return "SW" } + if star.posY(boundary) == true { + return "NW" + } + return "SW" } func (star Star2D) getRelativePositionInt(boundary BoundingBox) int { |