many semicolons

pull/2535/head
David Baker 2016-11-04 10:46:51 +00:00
parent a6d029c556
commit 9a00ec128c
1 changed files with 2 additions and 2 deletions

View File

@ -21,9 +21,9 @@ let Platform = null;
if (window && window.process && window.process && window.process.type === 'renderer') {
// we're running inside electron
Platform = require('./ElectronPlatform');;
Platform = require('./ElectronPlatform');
} else {
Platform = require('./WebPlatform');;
Platform = require('./WebPlatform');
}
export default Platform;