Merge branch 'fix/list-removal' into ace2_refactoring

pull/614/head
Matthias Bartelmeß 2012-04-07 10:26:21 +02:00
commit 62c9b1c25e
1 changed files with 1 additions and 3 deletions

View File

@ -134,9 +134,7 @@ AttributeManager.prototype = _(AttributeManager.prototype).extend({
var hasMarker = this.lineHasMarker(lineNum);
if(hasMarker){
ChangesetUtils.buildKeepRange(this.rep, builder, loc, (loc = [lineNum, 0]), [
[attributeName, attributeValue]
], this.rep.apool);
ChangesetUtils.buildKeepRange(this.rep, builder, loc, (loc = [lineNum, 0]));
ChangesetUtils.buildRemoveRange(this.rep, builder, loc, (loc = [lineNum, 1]));
}