diff options
| author | Silvan Jegen <s.jegen@gmail.com> | 2015-10-07 18:10:12 +0200 | 
|---|---|---|
| committer | Silvan Jegen <s.jegen@gmail.com> | 2015-10-07 18:10:12 +0200 | 
| commit | 942afdc5d97fe1b46a04e1ce70341b295df3ebfe (patch) | |
| tree | 2050423435b73be492f17a066c9616f5be6d4b4e | |
| parent | 0179cb2229270bf9a4ecf8d92ff16e84c981b129 (diff) | |
Reorder variable initialization
| -rw-r--r-- | obo.go | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -69,9 +69,10 @@ func Dump(oboent []*OboTermEntry, parentchildrenmap map[string][]*OboTermEntry)  }  func parseObo(oboinput bufio.Reader, obochan chan *OboTermEntry, parentchildren map[string][]*OboTermEntry) { -	lineno := 0  	var entry *OboTermEntry  	var termsstarted bool + +	lineno := 0  	defer close(obochan)  	for { | 
