Remove PatchLineCommentAccess.publish()

This was modified in ae122ef21 to be the various publishBy* methods, and
was accidentally added back in a rebase.

Change-Id: I2ed54feaa1e5c9ce40d0aadb9581289fc3076516
This commit is contained in:
Dave Borowitz
2011-12-19 11:02:06 -08:00
parent 1bba6a0d01
commit 690c5161b9

View File

@@ -31,10 +31,6 @@ public interface PatchLineCommentAccess extends
@Query("WHERE key.patchKey.patchSetId = ?")
ResultSet<PatchLineComment> byPatchSet(PatchSet.Id id) throws OrmException;
@Query("WHERE key.patchKey = ? AND status = '"
+ PatchLineComment.STATUS_PUBLISHED + "' ORDER BY lineNbr,writtenOn")
ResultSet<PatchLineComment> published(Patch.Key patch) throws OrmException;
@Query("WHERE key.patchKey.patchSetId.changeId = ?"
+ " AND key.patchKey.fileName = ? AND status = '"
+ PatchLineComment.STATUS_PUBLISHED + "' ORDER BY lineNbr,writtenOn")