| Index: tools/immic/lib/src/emitter.dart
|
| diff --git a/tools/immic/lib/src/emitter.dart b/tools/immic/lib/src/emitter.dart
|
| deleted file mode 100644
|
| index 3d472c07c7fd36dfe4fd6e998f31d3842ded8ee1..0000000000000000000000000000000000000000
|
| --- a/tools/immic/lib/src/emitter.dart
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -// Copyright (c) 2015, the Dartino 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.
|
| -
|
| -library servicec.emitter;
|
| -
|
| -import 'dart:io';
|
| -
|
| -import 'package:path/path.dart' show basenameWithoutExtension, join;
|
| -
|
| -void writeToFile(String outputDirectory,
|
| - String path,
|
| - String contents,
|
| - {String extension}) {
|
| - // Create output directory if it doesn't already exist.
|
| - new Directory(outputDirectory).createSync(recursive: true);
|
| - // Write contents of the file.
|
| - String fileName = path;
|
| - if (extension != null) {
|
| - String base = basenameWithoutExtension(path);
|
| - fileName = '$base.$extension';
|
| - }
|
| - String filePath = join(outputDirectory, fileName);
|
| - new File(filePath).writeAsStringSync(contents);
|
| -}
|
| -
|
|
|