mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Indentation.
This commit is contained in:
@@ -71,21 +71,17 @@ public class Async
|
||||
stream = new java.net.URL(params[0]).openStream();
|
||||
Bitmap bmp = BitmapFactory.decodeStream(stream);
|
||||
return bmp;
|
||||
}
|
||||
catch (MalformedURLException e) {
|
||||
} catch (MalformedURLException e) {
|
||||
e.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
catch (IOException e) {
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
return null;
|
||||
}
|
||||
finally {
|
||||
} finally {
|
||||
if (stream != null) {
|
||||
try {
|
||||
stream.close();
|
||||
}
|
||||
catch (IOException e) {
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
@@ -113,8 +109,8 @@ public class Async
|
||||
Resources res = this.context.getResources();
|
||||
int id = res.getIdentifier(name, "drawable", context.getPackageName());
|
||||
|
||||
if(id > 0) {
|
||||
BitmapDrawable result = (BitmapDrawable)res.getDrawable(id);
|
||||
if (id > 0) {
|
||||
BitmapDrawable result = (BitmapDrawable) res.getDrawable(id);
|
||||
return result.getBitmap();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user