update TODO scopes

This commit is contained in:
Jonathan Shook 2023-10-06 16:37:42 -05:00
parent 06be5cde64
commit bf2b16bbe3
3 changed files with 6 additions and 1 deletions

2
.gitignore vendored
View File

@ -7,6 +7,8 @@ local/**
metrics/** metrics/**
bin/** bin/**
**/.idea **/.idea
!.idea/scopes
!.idea/scopes/**
**/*.iml **/*.iml
**/target **/target
**/.classpath **/.classpath

View File

@ -0,0 +1,3 @@
<component name="DependencyValidationManager">
<scope name="project Java files" pattern="file:*.java" />
</component>

View File

@ -57,7 +57,7 @@ public class RelevancyMeasures implements NBLabeledElement {
for (RelevancyFunction function : f) { for (RelevancyFunction function : f) {
this.functions.add(function); this.functions.add(function);
function.prependLabels(this); function.prependLabels(this);
throw new RuntimeException("replace me after merge"); // TODO: metrics
// DoubleSummaryGauge gauge = ActivityMetrics.summaryGauge(function, function.getUniqueName()); // DoubleSummaryGauge gauge = ActivityMetrics.summaryGauge(function, function.getUniqueName());
// this.gauges.add(gauge); // this.gauges.add(gauge);
} }