diff options
author | Emile <hanemile@protonmail.com> | 2019-08-19 15:52:29 +0200 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2019-08-19 15:52:29 +0200 |
commit | 2a9a38a4e143a24dbffb8625f7781d91238b7905 (patch) | |
tree | 07280bea07c53a5e2799cee2d389b0569274fc0a | |
parent | 64a335d5467b4b0f1c7e4888fc65cc01b76f5fb6 (diff) |
removed NewTLE
-rw-r--r-- | TLE.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/TLE.go b/TLE.go index 5fe70c3..7a7672a 100644 --- a/TLE.go +++ b/TLE.go @@ -16,11 +16,6 @@ type TLE struct { LineTwo LineTwo `json:"linetwo"` } -// NewTLE returns a pointer to a TLE struct filled with the given Lines -func NewTLE(titleLine TitleLine, lineOne LineOne, lineTwo LineTwo) *TLE { - return &TLE{TitleLine: titleLine, LineOne: lineOne, LineTwo: lineTwo} -} - // TitleLine defines the first line in the the TLE // It contains the name of the satellite type TitleLine struct { |