From eff94164696ecb126ab47b85ee842e65692b649a Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Fri, 23 Jun 2017 23:05:04 +0900 Subject: Remove unused variables (#3906) --- app/javascript/mastodon/selectors/index.js | 3 --- 1 file changed, 3 deletions(-) (limited to 'app/javascript/mastodon/selectors/index.js') diff --git a/app/javascript/mastodon/selectors/index.js b/app/javascript/mastodon/selectors/index.js index d5d736e2f..07d9a2629 100644 --- a/app/javascript/mastodon/selectors/index.js +++ b/app/javascript/mastodon/selectors/index.js @@ -1,9 +1,6 @@ import { createSelector } from 'reselect'; import Immutable from 'immutable'; -const getStatuses = state => state.get('statuses'); -const getAccounts = state => state.get('accounts'); - const getAccountBase = (state, id) => state.getIn(['accounts', id], null); const getAccountCounters = (state, id) => state.getIn(['accounts_counters', id], null); const getAccountRelationship = (state, id) => state.getIn(['relationships', id], null); -- cgit