summaryrefslogtreecommitdiff
path: root/src/pkg/html/template/transition.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/html/template/transition.go')
-rw-r--r--src/pkg/html/template/transition.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/pkg/html/template/transition.go b/src/pkg/html/template/transition.go
index 96a4f6678..564eb2020 100644
--- a/src/pkg/html/template/transition.go
+++ b/src/pkg/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.