diff options
Diffstat (limited to 'libgo/go/html/template/transition.go')
-rw-r--r-- | libgo/go/html/template/transition.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libgo/go/html/template/transition.go b/libgo/go/html/template/transition.go index 96a4f66..564eb20 100644 --- a/libgo/go/html/template/transition.go +++ b/libgo/go/html/template/transition.go @@ -71,7 +71,6 @@ func tText(c context, s []byte) (context, int) { } k = j } - panic("unreachable") } var elementContentType = [...]state{ @@ -430,7 +429,6 @@ func tCSS(c context, s []byte) (context, int) { } k = i + 1 } - panic("unreachable") } // tCSSStr is the context transition function for the CSS string and URL states. @@ -471,7 +469,6 @@ func tCSSStr(c context, s []byte) (context, int) { c, _ = tURL(c, decodeCSS(s[:i+1])) k = i + 1 } - panic("unreachable") } // tError is the context transition function for the error state. |