Skip to content

Commit

Permalink
go ahead address the FIXME to add a space #4671
Browse files Browse the repository at this point in the history
The lack of the space doesn't seem to affect the query but it's hard on
the eyes. Best to fix it now.
  • Loading branch information
pdurbin committed May 21, 2018
1 parent 666862d commit 9ab3a4d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,7 @@ private Map<Integer, Object> selectCustomQuestionAnswers(Long dataverseId, Long
+ "and o.owner_id = " + dataverseId;

if (guestbookId != null) {
// FIXME: add space before "and".
cqString += ( "and g.guestbook_id = " + guestbookId);
cqString += ( " and g.guestbook_id = " + guestbookId);
}

if (firstResponse != null) {
Expand Down

0 comments on commit 9ab3a4d

Please sign in to comment.