diff options
author | Kjetil Ørbekk <orbekk@pvv.ntnu.no> | 2010-09-04 12:07:23 -0400 |
---|---|---|
committer | Kjetil Ørbekk <orbekk@pvv.ntnu.no> | 2010-09-04 12:07:23 -0400 |
commit | 3e7c93a07bb995f7a6a93ff6edd0a11dec729fd6 (patch) | |
tree | 79a5eddc194954d53ccdb903814e7ba1ce00b793 /src/lq | |
parent | a6bf93837bc8c77840db93b4671fe102dfb339f9 (diff) |
Remove the mapping for dropdb.
Diffstat (limited to 'src/lq')
-rw-r--r-- | src/lq/ImportQuotes.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lq/ImportQuotes.java b/src/lq/ImportQuotes.java index db0a633..4016719 100644 --- a/src/lq/ImportQuotes.java +++ b/src/lq/ImportQuotes.java @@ -61,7 +61,7 @@ public class ImportQuotes extends HttpServlet { Quote q = quotes.get(importId); pm.makePersistent(q); for (Vote v : votes) { - if (v.getQuoteId() == q.getId()) { + if (v.getQuoteId().equals(q.getId())) { pm.makePersistent(v); } } |