diff options
author | Harvey Harrison <[email protected]> | 2013-07-15 21:37:37 -0700 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2013-07-15 21:37:37 -0700 |
commit | 9fc9765b67f3ef47904e26154d6ef1519a565e41 (patch) | |
tree | e94e32ddd9c17142a4ecaf2504c4def6f51e494f /src/java/com/jogamp | |
parent | 36aa8b04410c3915c57dae66ad8fca930f854393 (diff) |
gluegen: remove redundant assignment of tmpBaseDir
- can only be null here, remove the entire else condition
Signed-off-by: Harvey Harrison <[email protected]>
Diffstat (limited to 'src/java/com/jogamp')
-rw-r--r-- | src/java/com/jogamp/common/util/IOUtil.java | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/java/com/jogamp/common/util/IOUtil.java b/src/java/com/jogamp/common/util/IOUtil.java index 2c3c756..e7db9f6 100644 --- a/src/java/com/jogamp/common/util/IOUtil.java +++ b/src/java/com/jogamp/common/util/IOUtil.java @@ -946,8 +946,6 @@ public class IOUtil { final String tmpDirSuffix = String.format("_%04d", i); // 4 digits for iteration tmpBaseDir = testDirImpl(new File(tmpRoot, tmpSubDirPrefix+tmpDirSuffix), true /* create */, executable); } - } else { - tmpBaseDir = null; } return tmpBaseDir; } |