This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class BenchmarkProxyManager implements InvocationHandler { | |
| private Benchmark o; | |
| public BenchmarkProxyManager(Benchmark o) { | |
| this.o = o; | |
| } | |
| public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | public class LambdaJBenchmark implements Benchmark { | |
| public void iterateSimpleList(final List<String> lines) { | |
| convert(lines, new Converter<Object, Object>() { | |
| public Object convert(Object o) { | |
| return o; | |
| } | |
| }); | |
| } | 
NewerOlder