Skip to content

Commit

Permalink
remove deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
surajhell88 committed Oct 16, 2017
1 parent d6fc0fc commit 1e10b72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/commit-live.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ atomHelper = require './atom-helper'
config = require './config'
auth = require './auth'
remote = require 'remote'
BrowserWindow = remote.require('browser-window')
BrowserWindow = remote.BrowserWindow
localStorage = require './local-storage'

module.exports =
Expand Down
2 changes: 1 addition & 1 deletion lib/notifier.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ path = require 'path'
io = require 'socket.io-client'
remote = require 'remote'
localStorage = require './local-storage'
BrowserWindow = remote.require('browser-window')
BrowserWindow = remote.BrowserWindow

module.exports =
class Notifier extends EventEmitter
Expand Down
2 changes: 1 addition & 1 deletion lib/views/terminal.coffee
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{$, View} = require 'atom-space-pen-views'
Clipboard = require 'clipboard'
remote = require 'remote'
Menu = remote.require 'menu'
Menu = remote.Menu
TerminalWrapper = require './terminal-wrapper'
localStorage = require '../local-storage'

Expand Down

0 comments on commit 1e10b72

Please sign in to comment.