| Index: runtime/bin/common.dart
|
| diff --git a/runtime/bin/common.dart b/runtime/bin/common.dart
|
| index b1f7da882b7ce550031f1493c1ae9e0d32aa6002..aa3365a7caf82830a0c7ea9d85e7b9486314493c 100644
|
| --- a/runtime/bin/common.dart
|
| +++ b/runtime/bin/common.dart
|
| @@ -42,14 +42,6 @@ class OSError {
|
| }
|
|
|
|
|
| -/**
|
| - * Utility for creating an OSError instance. NOTE: This will go away
|
| - * soon, so please don't use this utility function. The reason for
|
| - * having it temporarily is that the Dart C API does not currently
|
| - * support constructing objects.
|
| - */
|
| // TODO(sgjesse): Remove this once Dart constructors can be invoked
|
| // through the API.
|
| -class IOUtils {
|
| - static OSError makeOSError(message, code) => new OSError(message, code);
|
| -}
|
| +OSError _makeOSError(message, code) => new OSError(message, code);
|
|
|