Skip to content

Commit a1ece87

Browse files
author
Mario David
committed
switching dispatcher properties to protected; version 0.3.2
1 parent 947bdea commit a1ece87

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def bintrayRepositoryUrl = "https://api.bintray.com/maven/balvi/cuba-components/
3636
cuba {
3737
artifact {
3838
group = 'de.balvi.cuba.declarativecontrollers'
39-
version = '0.4.0'
40-
isSnapshot = true
39+
version = '0.3.1'
40+
isSnapshot = false
4141
}
4242
tomcat {
4343
dir = "$project.rootDir/deploy/tomcat"

modules/web/src/de/balvi/cuba/declarativecontrollers/web/browse/AnnotatableAbstractLookup.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
public class AnnotatableAbstractLookup extends AbstractLookup {
99

1010
@Inject
11-
private BrowseAnnotationDispatcher browseAnnotationDispatcher;
11+
protected BrowseAnnotationDispatcher browseAnnotationDispatcher;
1212

1313
private Map<String, Object> params;
1414

modules/web/src/de/balvi/cuba/declarativecontrollers/web/editor/AnnotatableAbstractEditor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class AnnotatableAbstractEditor<T extends Entity> extends AbstractEditor<T> {
1010

1111
@Inject
12-
private EditorAnnotationDispatcher editorAnnotationDispatcher;
12+
protected EditorAnnotationDispatcher editorAnnotationDispatcher;
1313

1414
@Override
1515
public void init(Map<String, Object> params) {

0 commit comments

Comments
 (0)