| OLD | NEW |
| 1 package com.google.dartndk; | 1 package com.google.dartndk; |
| 2 | 2 |
| 3 import java.io.File; | 3 import java.io.File; |
| 4 import java.io.FileOutputStream; | 4 import java.io.FileOutputStream; |
| 5 import java.io.InputStream; | 5 import java.io.InputStream; |
| 6 import java.io.IOException; | 6 import java.io.IOException; |
| 7 import java.io.OutputStream; | 7 import java.io.OutputStream; |
| 8 | 8 |
| 9 import android.app.NativeActivity; | 9 import android.app.NativeActivity; |
| 10 import android.content.res.AssetManager; | 10 import android.content.res.AssetManager; |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 } | 33 } |
| 34 in.close(); | 34 in.close(); |
| 35 out.flush(); | 35 out.flush(); |
| 36 ((FileOutputStream)out).getFD().sync(); | 36 ((FileOutputStream)out).getFD().sync(); |
| 37 out.close(); | 37 out.close(); |
| 38 } | 38 } |
| 39 } catch (IOException ex) { | 39 } catch (IOException ex) { |
| 40 } | 40 } |
| 41 } | 41 } |
| 42 } | 42 } |
| OLD | NEW |