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. */