com.vmlens.trace.agent.bootstrap.interleave.actualAccess.Comparator4ActualAccess Maven / Gradle / Ivy
package com.vmlens.trace.agent.bootstrap.interleave.actualAccess;
import java.util.Comparator;
public class Comparator4ActualAccess implements Comparator {
@Override
public int compare(ActualAccess o1, ActualAccess o2) {
if( o1.threadIndex != o2.threadIndex )
{
return Integer.compare( o1.threadIndex , o2.threadIndex);
}
return Integer.compare( o1.position , o2.position);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy