From a9c4b051e0cebcb8dfc126c6e6b909627accbeb1 Mon Sep 17 00:00:00 2001 From: Par Winzell Date: Mon, 6 Sep 2010 01:15:49 +0000 Subject: [PATCH] Let's not flip out on templated fields. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6140 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/tools/ActionScriptSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/presents/tools/ActionScriptSource.java b/src/java/com/threerings/presents/tools/ActionScriptSource.java index de170cd90..40b06f2ca 100644 --- a/src/java/com/threerings/presents/tools/ActionScriptSource.java +++ b/src/java/com/threerings/presents/tools/ActionScriptSource.java @@ -1054,7 +1054,7 @@ public class ActionScriptSource protected static Pattern JFIELD = Pattern.compile( "\\s+(?:public|protected|private)" + "(?:\\s+static|\\s+final|\\s+transient)*" + - "\\s+(?:[a-zA-Z\\[\\]<>,]+)" + // type + "\\s+(?:[a-zA-Z\\[\\]<\\?>,]+)" + // type "\\s+([_a-zA-Z]\\w*)(\\s+=.*|;)"); protected static Pattern JCONSTRUCTOR = Pattern.compile(