Skip to content

Commit 875ce69

Browse files
committed
we don't need no trailing spaces
1 parent 2480f74 commit 875ce69

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/vm/moar/profiler/template.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ <h3>Time Spent</h3>
106106
</tr>
107107
</tbody>
108108
</table>
109-
109+
110110
<h3>Call Frames</h3>
111111
<p>In total, <strong>{{EntriesWithoutInline}} call frames</strong> were
112112
entered and exited by the profiled code. Inlining eliminated the need
@@ -207,7 +207,7 @@ <h3>Dynamic Optimization</h3>
207207
</p>
208208
</div>
209209
</div>
210-
210+
211211
<div class="container" ng-show="Tab == 'Routines'">
212212
<div ng-controller="RoutinesController">
213213
<table class="table table-striped table-condensed table-bordered">
@@ -373,7 +373,7 @@ <h3>Dynamic Optimization</h3>
373373
</tr>
374374
</tbody>
375375
</table>
376-
376+
377377
<div class="panel panel-default">
378378
<div class="panel-heading">Callees</div>
379379
<table class="table table-striped table-condensed table-bordered" ng-show="Callees.length > 0">
@@ -529,7 +529,7 @@ <h4 class="modal-title" id="allocatingRoutinesModalLabel">
529529
</script>
530530
</div>
531531
</div>
532-
532+
533533
<div class="container" ng-show="Tab == 'GC'">
534534
<div ng-controller="GCController">
535535
<table class="table table-striped table-condensed table-bordered">
@@ -590,7 +590,7 @@ <h4 class="modal-title" id="allocatingRoutinesModalLabel">
590590
</table>
591591
</div>
592592
</div>
593-
593+
594594
<div class="container" ng-show="Tab == 'OSR/Deopt'">
595595
<div ng-controller="OSRDeoptController">
596596
<h3>OSR</h3>
@@ -630,7 +630,7 @@ <h3>OSR</h3>
630630

631631
<h3>Local Deoptimization</h3>
632632
<p>Local deoptimization happens when a guard in specialized or JIT-compiled
633-
code fails. Since the code was produced assuming the guard would hold,
633+
code fails. Since the code was produced assuming the guard would hold,
634634
the VM falls back to running the safe, but slower, interpreted code.</p>
635635
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptOnes.length > 0">
636636
<thead>
@@ -806,7 +806,7 @@ <h3>Global Deoptimization</h3>
806806
// Dynamic optimization
807807
var optimizedFrames = speshEntries + jitEntries;
808808
$scope.OptimizedFrames = optimizedFrames;
809-
$scope.DeoptOnes = deoptOnes;
809+
$scope.DeoptOnes = deoptOnes;
810810
$scope.DeoptOnePercent = +(100 * deoptOnes / (optimizedFrames || 1)).toFixed(2);
811811
$scope.DeoptAlls = deoptAlls;
812812
$scope.OSRs = osrs;
@@ -849,7 +849,7 @@ <h3>Global Deoptimization</h3>
849849
}
850850
}
851851
walkCallGraphNode(rawData[0].call_graph);
852-
852+
853853
// Build object list per routine.
854854
var routineList = [];
855855
for (id in idToEntries) {

0 commit comments

Comments
 (0)