Skip to content

Commit

Permalink
feat: reduce empty lines in controllers
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed May 18, 2024
1 parent be399c8 commit 9ca4cd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Alloy/commands/compile/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ function parseAlloyComponent(view, dir, manifest, noView, fileRestriction) {
cCode.parentControllerName : CU[CONST.DOCROOT_BASECONTROLLER_PROPERTY] || "'BaseController'";
template.__MAPMARKER_CONTROLLER_CODE__ += cCode.controller;
template.preCode += cCode.pre;
template.ES6Mod += cCode.es6mods;
template.ES6Mod += cCode.es6mods.trim();

// for each model variable in the bindings map...
_.each(styler.bindingsMap, function(mapping, modelVar) {
Expand Down

0 comments on commit 9ca4cd6

Please sign in to comment.