Skip to content

Commit 463fb87

Browse files
author
prsaminathan
committed
Addressed PR comments
1 parent abae305 commit 463fb87

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

common4j/src/main/com/microsoft/identity/common/java/broker/IBrokerPerformanceMetricsProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@
2323
package com.microsoft.identity.common.java.broker
2424

2525
interface IBrokerPerformanceMetricsProvider {
26-
var brokerPerformanceMetrics: BrokerPerformanceMetrics?
26+
val brokerPerformanceMetrics: BrokerPerformanceMetrics?
2727
}

common4j/src/main/com/microsoft/identity/common/java/exception/BaseException.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,7 @@ public void setBrokerPerformanceMetrics(final BrokerPerformanceMetrics brokerPer
224224
this.mBrokerPerformanceMetrics = brokerPerformanceMetrics;
225225
}
226226

227+
@Override
227228
public BrokerPerformanceMetrics getBrokerPerformanceMetrics() {
228229
return this.mBrokerPerformanceMetrics;
229230
}

common4j/src/main/com/microsoft/identity/common/java/result/AcquireTokenResult.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public void setBrokerPerformanceMetrics(BrokerPerformanceMetrics brokerPerforman
6161
this.mBrokerPerformanceMetrics = brokerPerformanceMetrics;
6262
}
6363

64+
@Override
6465
public BrokerPerformanceMetrics getBrokerPerformanceMetrics() {
6566
return this.mBrokerPerformanceMetrics;
6667
}

0 commit comments

Comments
 (0)