Skip to content

Commit

Permalink
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/org/jruby/compiler/JITCompiler.java
Original file line number Diff line number Diff line change
@@ -143,13 +143,13 @@ public long getLargestCodeSize() {
return counts.largestCodeSize.get();
}

public String[] frameAwareMethods() {
public String[] getFrameAwareMethods() {
String[] frameAwareMethods = MethodIndex.FRAME_AWARE_METHODS.toArray(new String[0]);
Arrays.sort(frameAwareMethods);
return frameAwareMethods;
}

public String[] scopeAwareMethods() {
public String[] getScopeAwareMethods() {
String[] scopeAwareMethods = MethodIndex.SCOPE_AWARE_METHODS.toArray(new String[0]);
Arrays.sort(scopeAwareMethods);
return scopeAwareMethods;
4 changes: 2 additions & 2 deletions core/src/main/java/org/jruby/compiler/JITCompilerMBean.java
Original file line number Diff line number Diff line change
@@ -10,6 +10,6 @@ public interface JITCompilerMBean {
public long getAverageCodeSize();
public long getAverageCompileTime();
public long getLargestCodeSize();
public String[] frameAwareMethods();
public String[] scopeAwareMethods();
public String[] getFrameAwareMethods();
public String[] getScopeAwareMethods();
}

0 comments on commit 7a7eca1

Please sign in to comment.