From 4e8fdf66f46e9fc170a1f7cdb58448312698c16f Mon Sep 17 00:00:00 2001 From: Charlie Groves Date: Sat, 13 Nov 2010 22:36:55 +0000 Subject: [PATCH] Whoops, 1.6ism git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6265 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/tools/cpp/MethodDescriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/threerings/presents/tools/cpp/MethodDescriptor.java b/src/main/java/com/threerings/presents/tools/cpp/MethodDescriptor.java index be83ee6bc..0d37b4cfa 100644 --- a/src/main/java/com/threerings/presents/tools/cpp/MethodDescriptor.java +++ b/src/main/java/com/threerings/presents/tools/cpp/MethodDescriptor.java @@ -11,7 +11,7 @@ public class MethodDescriptor { public static List from(List methods) { return Lists.transform(methods, new Function() { - @Override public MethodDescriptor apply (ServiceMethod from) { + public MethodDescriptor apply (ServiceMethod from) { return new MethodDescriptor(from); }}); }