You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@avro.apache.org by "Jingguo Yao (JIRA)" <ji...@apache.org> on 2010/10/14 15:44:32 UTC

[jira] Updated: (AVRO-681) invalid code in IDL doc

     [ https://issues.apache.org/jira/browse/AVRO-681?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jingguo Yao updated AVRO-681:
-----------------------------

    Attachment: AVRO-681.patch

> invalid code in IDL doc
> -----------------------
>
>                 Key: AVRO-681
>                 URL: https://issues.apache.org/jira/browse/AVRO-681
>             Project: Avro
>          Issue Type: Bug
>          Components: doc
>    Affects Versions: 1.4.0
>            Reporter: Jingguo Yao
>            Priority: Minor
>         Attachments: AVRO-681.patch
>
>
> The following IDL code is invalid:
> record MyRecord {
>   @java-class("java.util.ArrayList") array string myStrings;
> }
> First, "-" can't be used in a annotation name. Second, "array string" is the wrong way to denote array. Valid code should be:
> record MyRecord {
>   @java_class("java.util.ArrayList") array<string> myStrings;
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.