File tree 2 files changed +2
-1
lines changed
structurizr-core/src/main/java/com/structurizr/view
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 3
3
## 2.1.0 (unreleased)
4
4
5
5
- structurizr-core: ` ViewSet.isEmpty() ` was missing a check for image views.
6
+ - structurizr-core: Promotes ` ModelView.copyLayoutInformationFrom() ` to be public, to allow individual view layout information to be merged.
6
7
- structurizr-client: Fixes https://github.com/structurizr/java/issues/257 (Serialization to JSON is not deterministic).
7
8
- structurizr-dsl: Fixes https://github.com/structurizr/java/issues/252 (DSL parser does not seem to handle curly brackets balance).
8
9
- structurizr-dsl: Deprecates ` !constant ` , adds ` !const ` and ` !var ` (see https://github.com/structurizr/java/issues/253 ).
Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ public void setLayoutMergeStrategy(LayoutMergeStrategy layoutMergeStrategy) {
369
369
*
370
370
* @param source the source View
371
371
*/
372
- void copyLayoutInformationFrom (@ Nonnull ModelView source ) {
372
+ public void copyLayoutInformationFrom (@ Nonnull ModelView source ) {
373
373
layoutMergeStrategy .copyLayoutInformation (source , this );
374
374
}
375
375
You can’t perform that action at this time.
0 commit comments