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:
@@ -14,10 +14,9 @@
|
||||
limitations under the License.
|
||||
-->
|
||||
<module>
|
||||
<replace-with class='com.google.gerrit.prettify.client.PrivateScopeImplIE6'>
|
||||
<replace-with class='com.google.gerrit.prettify.client.PrivateScopeImplIE8'>
|
||||
<when-type-is class='com.google.gerrit.prettify.client.PrivateScopeImpl'/>
|
||||
<any>
|
||||
<when-property-is name="user.agent" value="ie6" />
|
||||
<when-property-is name="user.agent" value="ie8" />
|
||||
</any>
|
||||
</replace-with>
|
||||
|
||||
@@ -16,8 +16,8 @@ package com.google.gerrit.prettify.client;
|
||||
|
||||
import com.google.gwt.core.client.JavaScriptObject;
|
||||
|
||||
/** IE6 requires us to initialize the document before we can use it. */
|
||||
public class PrivateScopeImplIE6 extends PrivateScopeImpl {
|
||||
/** MSIE requires us to initialize the document before we can use it. */
|
||||
public class PrivateScopeImplIE8 extends PrivateScopeImpl {
|
||||
private JavaScriptObject context;
|
||||
|
||||
@Override
|
||||
Reference in New Issue
Block a user