TESTING: improve overall code quality

This commit is contained in:
Unknwon
2017-10-23 06:27:56 -04:00
parent cd55d8d297
commit 7006dbe48c
16 changed files with 1380 additions and 831 deletions
+1 -2
View File
@@ -26,6 +26,7 @@ import (
// Key represents a key under a section.
type Key struct {
s *Section
Comment string
name string
value string
isAutoIncrement bool
@@ -33,8 +34,6 @@ type Key struct {
isShadow bool
shadows []*Key
Comment string
}
// newKey simply return a key object with given values.