2 Commits d16df76afc ... 486bb53a3b

Author SHA1 Message Date
  blackwine 486bb53a3b becoming a party pig 1 month ago
  blackwine d16df76afc becoming a party pig 1 month ago
1 changed files with 0 additions and 7 deletions
  1. 0 7
      at-osc/main.go

+ 0 - 7
at-osc/main.go

@@ -34,7 +34,6 @@ func main() {
 		if have_string {
 		if have_string {
 			msg.Append(arg)
 			msg.Append(arg)
 			have_string = false
 			have_string = false
-			//log.Println("Parsed string:", arg)
 		} else if arg == "-s" {
 		} else if arg == "-s" {
 			have_string = true
 			have_string = true
 		} else if have_blob {
 		} else if have_blob {
@@ -44,24 +43,18 @@ func main() {
         		}
         		}
 			msg.Append(content)
 			msg.Append(content)
 			have_blob = false
 			have_blob = false
-			//log.Println("Parsed blob...")
 		} else if arg == "-b" {
 		} else if arg == "-b" {
 			have_blob = true
 			have_blob = true
 		} else if arg == "true" {
 		} else if arg == "true" {
 			msg.Append(true)
 			msg.Append(true)
-			//log.Println("Parsed bool:", true)
 		} else if arg == "false" {
 		} else if arg == "false" {
 			msg.Append(false)
 			msg.Append(false)
-			//log.Println("Parsed bool:", false)
 		} else if i, err := strconv.Atoi(arg); err == nil {
 		} else if i, err := strconv.Atoi(arg); err == nil {
 			msg.Append(int32(i))
 			msg.Append(int32(i))
-			//log.Println("Parsed int:", i)
 		} else if f, err := strconv.ParseFloat(arg, 64); err == nil {
 		} else if f, err := strconv.ParseFloat(arg, 64); err == nil {
 			msg.Append(float32(f))
 			msg.Append(float32(f))
-			//log.Println("Parsed float:", f)
 		} else {
 		} else {
 			msg.Append(arg)
 			msg.Append(arg)
-			//log.Println("Parsed string:", arg)
 		}
 		}
 	}
 	}