comparison src/luan/modules/lucene/LuceneIndex.java @ 1399:38a1c1b4279a

fix
author Franklin Schmidt <fschmidt@gmail.com>
date Wed, 11 Sep 2019 16:28:38 -0600
parents 67c0e47b5be3
children 27efb1fcbcb5
comparison
equal deleted inserted replaced
1398:67c0e47b5be3 1399:38a1c1b4279a
968 postgresChecker.close(); 968 postgresChecker.close();
969 } 969 }
970 } 970 }
971 971
972 private boolean equal(LuanTable t1,LuanTable t2) throws LuanException { 972 private boolean equal(LuanTable t1,LuanTable t2) throws LuanException {
973 return t1.asMap().equals(t2.asMap()); 973 return t1!=null && t2!=null && t1.asMap().equals(t2.asMap());
974 } 974 }
975 975
976 } 976 }