[ adempiere-Bugs-1921691 ] Issue with cache in 2Pack

- missout one.
This commit is contained in:
Heng Sin Low 2008-03-21 17:22:36 +00:00
parent 4967d85902
commit fa4343d2ad
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,8 @@ public class IDFinder {
} }
//keep in cache //keep in cache
idCache.put(key.toString(), id); if (id > 0)
idCache.put(key.toString(), id);
return id; return id;
} }