about summary refs log tree commit diff
path: root/TLE.go
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-08-19 15:52:29 +0200
committerEmile <hanemile@protonmail.com>2019-08-19 15:52:29 +0200
commit2a9a38a4e143a24dbffb8625f7781d91238b7905 (patch)
tree07280bea07c53a5e2799cee2d389b0569274fc0a /TLE.go
parent64a335d5467b4b0f1c7e4888fc65cc01b76f5fb6 (diff)
removed NewTLE
Diffstat (limited to 'TLE.go')
-rw-r--r--TLE.go5
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 {