diff options
author | Stephen Hines <srhines@google.com> | 2011-03-15 21:05:54 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2011-03-15 21:06:21 -0700 |
commit | 84a97cae1e53400676a4dfd6c7bf75f9ac230fce (patch) | |
tree | 77d5101607fcbc36498abb4ed4fb93696c941a8d /graphics | |
parent | fd865d0fb5f5b38a41a9196ee54357715bd32254 (diff) | |
download | frameworks_base-84a97cae1e53400676a4dfd6c7bf75f9ac230fce.zip frameworks_base-84a97cae1e53400676a4dfd6c7bf75f9ac230fce.tar.gz frameworks_base-84a97cae1e53400676a4dfd6c7bf75f9ac230fce.tar.bz2 |
Check setName() for null string + typo fixes.
Change-Id: Ibf5fd3bcf908df8370eac2848e2b329328b9e8d3
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/java/android/renderscript/BaseObj.java | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/graphics/java/android/renderscript/BaseObj.java b/graphics/java/android/renderscript/BaseObj.java index 669beac..8ce1d9a 100644 --- a/graphics/java/android/renderscript/BaseObj.java +++ b/graphics/java/android/renderscript/BaseObj.java @@ -75,11 +75,17 @@ class BaseObj { * @param name The name to assign to the object. */ public void setName(String name) { + if (name == null) { + throw new RSIllegalArgumentException( + "setName requires a string of non-zero length."); + } if(name.length() < 1) { - throw new RSIllegalArgumentException("setName does not accept a zero length string."); + throw new RSIllegalArgumentException( + "setName does not accept a zero length string."); } if(mName != null) { - throw new RSIllegalArgumentException("setName object already has a name."); + throw new RSIllegalArgumentException( + "setName object already has a name."); } try { @@ -106,9 +112,9 @@ class BaseObj { } /** - * destroy disconnects the object from the native object effectivly + * destroy disconnects the object from the native object effectively * rendering this java object dead. The primary use is to force immediate - * cleanup of resources when its believed the GC will not respond quickly + * cleanup of resources when it is believed the GC will not respond quickly * enough. */ synchronized public void destroy() { |