Remove dead code.

This commit is contained in:
James Cole
2018-06-23 17:40:41 +02:00
parent a1d99c1954
commit 3a71bd01fb
6 changed files with 2 additions and 48 deletions

View File

@@ -40,10 +40,6 @@ class BalanceLine
*
*/
public const ROLE_TAGROLE = 2;
/**
*
*/
public const ROLE_DIFFROLE = 3;
/** @var Collection */
protected $balanceEntries;
@@ -167,9 +163,6 @@ class BalanceLine
if (self::ROLE_TAGROLE === $this->getRole()) {
return (string)trans('firefly.coveredWithTags');
}
if (self::ROLE_DIFFROLE === $this->getRole()) {
return (string)trans('firefly.leftUnbalanced');
}
return '';
}