From 2fea74abcdf13ff670bbd2b4ace59c68072afe3f Mon Sep 17 00:00:00 2001
From: Paul Kaplan <pkaplan@media.mit.edu>
Date: Fri, 18 Aug 2017 08:52:34 -0400
Subject: [PATCH] Remove unused state variable for shift key

---
 src/containers/green-flag.jsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/containers/green-flag.jsx b/src/containers/green-flag.jsx
index 3ca971fe4..a725b7e1b 100644
--- a/src/containers/green-flag.jsx
+++ b/src/containers/green-flag.jsx
@@ -14,7 +14,7 @@ class GreenFlag extends React.Component {
             'onProjectRunStart',
             'onProjectRunStop'
         ]);
-        this.state = {projectRunning: false, shiftKeyDown: false};
+        this.state = {projectRunning: false};
     }
     componentDidMount () {
         this.props.vm.addListener('PROJECT_RUN_START', this.onProjectRunStart);
-- 
GitLab