Skip to content

Commit

Permalink
Remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
rawilk committed Jan 22, 2024
1 parent b311368 commit 901497e
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions src/Password.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,24 +52,4 @@ public function shouldHidePasswordManagerIcons(): bool
{
return (bool) $this->evaluate($this->hidePasswordManagerIcons);
}

// public function getSuffixActions(): array
// {
// if ($this->cachedSuffixActions) {
// return $this->cachedSuffixActions;
// }
//
// $isDisabled = $this->isDisabled();
// $isReadonly = $this->isReadOnly();
//
// if (! $isDisabled && $this->isCopyable()) {
// $this->suffixActions([$this->getCopyToClipboardAction()], $this->isSuffixInline);
// }
//
// if (! ($isDisabled || $isReadonly) && $this->canRegeneratePassword()) {
// $this->suffixActions([$this->getRegeneratePasswordAction()], $this->isSuffixInline);
// }
//
// return parent::getSuffixActions();
// }
}

0 comments on commit 901497e

Please sign in to comment.