mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 05:12:41 +01:00
Remove some no-op "canUninstall()" Application methods
Summary: The default behavior of these methods is to return `true`, so these overrides have no effect. Test Plan: `grep`; poked around. Reviewers: chad Reviewed By: chad Subscribers: hach-que Differential Revision: https://secure.phabricator.com/D16985
This commit is contained in:
parent
5f593aafb1
commit
4a6229ee69
3 changed files with 0 additions and 12 deletions
|
@ -26,10 +26,6 @@ final class PhabricatorBadgesApplication extends PhabricatorApplication {
|
||||||
return self::GROUP_UTILITIES;
|
return self::GROUP_UTILITIES;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function canUninstall() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function isPrototype() {
|
public function isPrototype() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,10 +23,6 @@ final class PhabricatorNuanceApplication extends PhabricatorApplication {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function canUninstall() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getBaseURI() {
|
public function getBaseURI() {
|
||||||
return '/nuance/';
|
return '/nuance/';
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,10 +30,6 @@ final class PhabricatorPhragmentApplication extends PhabricatorApplication {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function canUninstall() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getRoutes() {
|
public function getRoutes() {
|
||||||
return array(
|
return array(
|
||||||
'/phragment/' => array(
|
'/phragment/' => array(
|
||||||
|
|
Loading…
Reference in a new issue