Fixing the 1st argument of the write method, so we can really check the error in second argument
authorJaroslav Tulach <jtulach@netbeans.org>
Sun, 02 Aug 2015 09:59:37 +0200
changeset 95495755c3c836b
parent 953 cd7d2aca34be
child 955 8e0439c4cc72
Fixing the 1st argument of the write method, so we can really check the error in second argument
json/src/test/java/net/java/html/json/ModelProcessorTest.java
     1.1 --- a/json/src/test/java/net/java/html/json/ModelProcessorTest.java	Sun Jul 19 14:04:03 2015 +0200
     1.2 +++ b/json/src/test/java/net/java/html/json/ModelProcessorTest.java	Sun Aug 02 09:59:37 2015 +0200
     1.3 @@ -190,7 +190,7 @@
     1.4              + "    static @ComputedProperty(write=\"setY\") int y(int prop) {\n"
     1.5              + "        return prop;\n"
     1.6              + "    }\n"
     1.7 -            + "    static void setY(String prop) {\n"
     1.8 +            + "    static void setY(XModel model, String prop) {\n"
     1.9              + "    }\n"
    1.10              + "}\n";
    1.11