From ef2fe95bd8e02995ca9d3824c57c4ec22b2ae7c2 Mon Sep 17 00:00:00 2001 From: hacksalot Date: Thu, 24 Dec 2015 04:04:44 -0500 Subject: [PATCH] Remove unused method. --- src/core/fresh-resume.js | 9 --------- src/core/jrs-resume.js | 9 --------- 2 files changed, 18 deletions(-) diff --git a/src/core/fresh-resume.js b/src/core/fresh-resume.js index 68641f9..1759994 100644 --- a/src/core/fresh-resume.js +++ b/src/core/fresh-resume.js @@ -187,15 +187,6 @@ Definition of the FRESHResume class. return flatSkills; }, - /** - Update the sheet's raw data. TODO: remove/refactor - */ - FreshResume.prototype.updateData = function( str ) { - this.clear( false ); - this.parse( str ); - return this; - }; - /** Reset the sheet to an empty state. */ diff --git a/src/core/jrs-resume.js b/src/core/jrs-resume.js index 9a5bbdd..c9311a0 100644 --- a/src/core/jrs-resume.js +++ b/src/core/jrs-resume.js @@ -107,15 +107,6 @@ Definition of the JRSResume class. return flatSkills; }; - /** - Update the sheet's raw data. TODO: remove/refactor - */ - JRSResume.prototype.updateData = function( str ) { - this.clear( false ); - this.parse( str ); - return this; - }; - /** Reset the sheet to an empty state. */