From 2c7bef0c8e2901eec3b64e2063c1f0206c6fada7 Mon Sep 17 00:00:00 2001 From: kmfdm Date: Fri, 28 Jun 2002 15:14:22 +0000 Subject: [PATCH] fixed typo --- src/helma/doc/DocPrototype.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helma/doc/DocPrototype.java b/src/helma/doc/DocPrototype.java index 7af3120d..9f3d4751 100644 --- a/src/helma/doc/DocPrototype.java +++ b/src/helma/doc/DocPrototype.java @@ -58,7 +58,7 @@ public class DocPrototype extends DocElement implements IPathElement { funcVec.addElement(functions[i]); } } - return (DocFunction[])funcVec.toArray(new DocFunction[funcVec.size()]);; + return (DocFunction[])funcVec.toArray(new DocFunction[funcVec.size()]); }