Skip to content

Commit

Permalink
standard
Browse files Browse the repository at this point in the history
  • Loading branch information
LianaHus committed Sep 4, 2019
1 parent c049685 commit 19fcaf2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/app/files/NotPersistedExplorer.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
'use strict'
var ReadOnlyExplorer = require('./readonlyProvider')
var ReadonlyProvider = require('./readonlyProvider')
var toolTip = require('../ui/tooltip')

class NotPersistedExplorer extends ReadOnlyExplorer {
class NotPersistedExplorer extends ReadonlyProvider {
constructor (type) {
super(type)
this.readonly = false
Expand Down
4 changes: 1 addition & 3 deletions src/app/files/fileProviderBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ this.set = function (path, content, cb) {}
this.addReadOnly = function (path, content) {}
this.isReadOnly = function (path) {}
this.remove = function (path) {}
Expand All @@ -20,6 +19,5 @@ this.resolveDirectory = function (path, callback) {}
this.removePrefix = function (path) {}
updateRefs (path, type) {}
*/
*/

0 comments on commit 19fcaf2

Please sign in to comment.