Index: dart/compiler/java/com/google/dart/compiler/util/Hack.java |
diff --git a/dart/compiler/java/com/google/dart/compiler/util/Hack.java b/dart/compiler/java/com/google/dart/compiler/util/Hack.java |
deleted file mode 100644 |
index 642f416394f66bd5c797f0bde4614208e24c2ffc..0000000000000000000000000000000000000000 |
--- a/dart/compiler/java/com/google/dart/compiler/util/Hack.java |
+++ /dev/null |
@@ -1,16 +0,0 @@ |
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-package com.google.dart.compiler.util; |
- |
-/** |
- * Utility to hack around untypable (or yet to be) code. |
- */ |
-public class Hack { |
- public static <T> T cast(Object o) { |
- @SuppressWarnings("unchecked") |
- T t = (T) o; |
- return t; |
- } |
-} |