Browse Source

Merge pull request #970 from titanous/go1.1-unreachable

Remove code unreachable using Go 1.1
Victor Vieux 12 years ago
parent
commit
63e8a4ac74
4 changed files with 0 additions and 8 deletions
  1. 0 3
      container.go
  2. 0 1
      contrib/crashTest.go
  3. 0 1
      network.go
  4. 0 3
      utils/utils.go

+ 0 - 3
container.go

@@ -632,7 +632,6 @@ func (container *Container) waitLxc() error {
 		}
 		}
 		time.Sleep(500 * time.Millisecond)
 		time.Sleep(500 * time.Millisecond)
 	}
 	}
-	panic("Unreachable")
 }
 }
 
 
 func (container *Container) monitor() {
 func (container *Container) monitor() {
@@ -821,8 +820,6 @@ func (container *Container) WaitTimeout(timeout time.Duration) error {
 	case <-done:
 	case <-done:
 		return nil
 		return nil
 	}
 	}
-
-	panic("Unreachable")
 }
 }
 
 
 func (container *Container) EnsureMounted() error {
 func (container *Container) EnsureMounted() error {

+ 0 - 1
contrib/crashTest.go

@@ -116,7 +116,6 @@ func crashTest() error {
 			return err
 			return err
 		}
 		}
 	}
 	}
-	return nil
 }
 }
 
 
 func main() {
 func main() {

+ 0 - 1
network.go

@@ -257,7 +257,6 @@ func proxy(listener net.Listener, proto, address string) error {
 		utils.Debugf("Connected to backend, splicing")
 		utils.Debugf("Connected to backend, splicing")
 		splice(src, dst)
 		splice(src, dst)
 	}
 	}
-	panic("Unreachable")
 }
 }
 
 
 func halfSplice(dst, src net.Conn) error {
 func halfSplice(dst, src net.Conn) error {

+ 0 - 3
utils/utils.go

@@ -236,7 +236,6 @@ func (r *bufReader) Read(p []byte) (n int, err error) {
 		}
 		}
 		r.wait.Wait()
 		r.wait.Wait()
 	}
 	}
-	panic("unreachable")
 }
 }
 
 
 func (r *bufReader) Close() error {
 func (r *bufReader) Close() error {
@@ -678,5 +677,3 @@ func ParseHost(host string, port int, addr string) string {
 	}
 	}
 	return fmt.Sprintf("tcp://%s:%d", host, port)
 	return fmt.Sprintf("tcp://%s:%d", host, port)
 }
 }
-
-