about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/components/boost_modal.js
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-05-25 00:55:16 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-05-24 17:55:16 +0200
commit1ec7c87001c39cca4b784bf97972280fd965efb3 (patch)
tree12abc74c2ef8206a9df80a6ca3671e24f72605f6 /app/javascript/mastodon/features/ui/components/boost_modal.js
parent8e4d1cba00b48bc52dc406956a245856c489e48a (diff)
Remove unnecessary constructors (#3280)
Diffstat (limited to 'app/javascript/mastodon/features/ui/components/boost_modal.js')
-rw-r--r--app/javascript/mastodon/features/ui/components/boost_modal.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/app/javascript/mastodon/features/ui/components/boost_modal.js b/app/javascript/mastodon/features/ui/components/boost_modal.js
index fc6b37095..183f05fab 100644
--- a/app/javascript/mastodon/features/ui/components/boost_modal.js
+++ b/app/javascript/mastodon/features/ui/components/boost_modal.js
@@ -27,12 +27,6 @@ class BoostModal extends ImmutablePureComponent {
     intl: PropTypes.object.isRequired,
   };
 
-  constructor (props, context) {
-    super(props, context);
-    this.handleReblog = this.handleReblog.bind(this);
-    this.handleAccountClick = this.handleAccountClick.bind(this);
-  }
-
   handleReblog = () => {
     this.props.onReblog(this.props.status);
     this.props.onClose();