From 3daef7d65ef27bbb2111420c94c054656d794662 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr>
Date: Wed, 25 Apr 2007 17:03:34 +0000
Subject: [PATCH] - bug in alignement storage corrected (did not ensure that
 getExtensions returns something)

---
 src/fr/inrialpes/exmo/align/service/CacheImpl.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/fr/inrialpes/exmo/align/service/CacheImpl.java b/src/fr/inrialpes/exmo/align/service/CacheImpl.java
index 49e8e080..2a02c1c3 100644
--- a/src/fr/inrialpes/exmo/align/service/CacheImpl.java
+++ b/src/fr/inrialpes/exmo/align/service/CacheImpl.java
@@ -456,7 +456,7 @@ public class CacheImpl implements Cache {
 		    "VALUES ('" + quote(id) + "','" +  quote(tag) + "','" + quote(s_method) + "')";
 		st.executeUpdate(query);
 	    }
-	    
+
 	    for( Enumeration e = alignment.getElements() ; e.hasMoreElements(); ){
 		Cell c = (Cell)e.nextElement();
 		String cellid = null;
@@ -485,7 +485,7 @@ public class CacheImpl implements Cache {
 			"VALUES ('" + quote(id) + "','" + quote(cellid) + "','" + quote(uri1) + "','" + quote(uri2) + "','" + quote(strength) + "','" + quote(sem) + "','" + quote(rel) + "')";
 		    st.executeUpdate(query);
 		}
-		if ( cellid != null && !cellid.equals("") ) {
+		if ( cellid != null && !cellid.equals("") && c.getExtensions() != null ) {
 		    // JE: I must now store all the extensions
 		    for( Enumeration e2 = c.getExtensions().getNames() ; e2.hasMoreElements() ; ){
 			String tag = (String)e2.nextElement();
-- 
GitLab