[asterisk-scf-commits] asterisk-scf/integration/ice.git branch "review/java-windows-handle-load-exception" updated.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Fri Feb 10 09:53:23 CST 2012


branch "review/java-windows-handle-load-exception" has been updated
       via  57526c5fa9c0c3bd024677d51ee3763866a96c54 (commit)
      from  ff4e5b38363534e002c6c58134612b0653d38c7b (commit)

Summary of changes:
 java/src/IceInternal/Util.java |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


- Log -----------------------------------------------------------------
commit 57526c5fa9c0c3bd024677d51ee3763866a96c54
Author: David M. Lee <dlee at digium.com>
Date:   Fri Feb 10 09:49:43 2012 -0600

    Corrected omission in IllegalArgumentException fix
    
    It helps to actually assign the stream to the variable :-)

diff --git a/java/src/IceInternal/Util.java b/java/src/IceInternal/Util.java
index 7e30015..4687715 100644
--- a/java/src/IceInternal/Util.java
+++ b/java/src/IceInternal/Util.java
@@ -43,7 +43,7 @@ public final class Util
         java.io.InputStream stream = null;
         try
         {
-            cl.getResourceAsStream(path);
+            stream = cl.getResourceAsStream(path);
         }
         catch(IllegalArgumentException e)
         {

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/ice.git



More information about the asterisk-scf-commits mailing list