Remove references to unsupported IE6

IE6 is no longer supported in target builds by GWT.
Remove the dead code, rename still live IE support to IE8.

Change-Id: I8d0f20ee09a687f2692e196d9f25cef928dc3bb4
This commit is contained in:
Shawn Pearce
2015-03-17 15:44:21 -07:00
parent eb7d88c1ec
commit f109bec92a
7 changed files with 7 additions and 13 deletions

View File

@@ -67,9 +67,6 @@ public class UserAgentRule {
if (v >= 8000) {
return "ie8";
}
if (v >= 6000) {
return "ie6";
}
}
return null;