[
https://issues.apache.org/jira/browse/ISIS-2100?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16926110#comment-16926110
]
ASF subversion and git services commented on ISIS-2100:
-------------------------------------------------------
Commit 03ee0938a859241ccc45cd9e66667042d36e6c28 in isis's branch
refs/heads/v2-antora from danhaywood
[ https://gitbox.apache.org/repos/asf?p=isis.git;h=03ee093 ]
ISIS-2100: fixes misspelt name of IsisIntegrationTestAbstactWithFixtures
changed to IsisIntegrationTestAbstractWithFixtures
> Reduce call-site complexity of 'BuilderScripts'
> -----------------------------------------------
>
> Key: ISIS-2100
> URL: https://issues.apache.org/jira/browse/ISIS-2100
> Project: Isis
> Issue Type: Improvement
> Components: Core
> Reporter: Andi Huber
> Assignee: Andi Huber
> Priority: Major
> Fix For: 2.0.0
>
>
> Removing type-params, where redundant ...
> {code:java}
> @Accessors(chain = true)
> public class SimpleObjectBuilder
> extends BuilderScriptAbstract<SimpleObject> { // <= only 1 type param
> @Getter
> private SimpleObject object;
> ...
> }
> @AllArgsConstructor
> public enum SimpleObject_persona
> implements PersonaWithBuilderScript<SimpleObjectBuilder> /* <= only 1 type
> param */ ... {
> FOO("Foo"),
> BAR("Bar"),
>
> ...
> public SimpleObjectBuilder builder() {
> return new SimpleObjectBuilder().setName(name);
> }
> public static class PersistAll
> extends PersonaEnumPersistAll<SimpleObject_persona, SimpleObject> /* <=
> only 2 type params */ {
> ...
> }
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.3.2#803003)