InlineAttachmentList had unnecessary function

This commit is contained in:
Mikael Nordfeldth 2014-04-28 20:12:00 +02:00
parent c8d613b916
commit 6d72d0c86f

View File

@ -50,7 +50,7 @@ class InlineAttachmentList extends AttachmentList
* *
* @return ListItem a list item for displaying the attachment * @return ListItem a list item for displaying the attachment
*/ */
function newListItem($attachment) function newListItem(File $attachment)
{ {
return new InlineAttachmentListItem($attachment, $this->out); return new InlineAttachmentListItem($attachment, $this->out);
} }
@ -58,18 +58,6 @@ class InlineAttachmentList extends AttachmentList
class InlineAttachmentListItem extends AttachmentListItem class InlineAttachmentListItem extends AttachmentListItem
{ {
protected $thumb;
function show()
{
try {
$this->thumb = $this->attachment->getThumbnail();
parent::show();
} catch (UnsupportedMediaException $e) {
$this->thumb = null;
}
}
function showLink() { function showLink() {
$this->out->elementStart('a', $this->linkAttr()); $this->out->elementStart('a', $this->linkAttr());
$this->showRepresentation(); $this->showRepresentation();