Skip to content

Commit

Permalink
fix:Keep line endings in classes
Browse files Browse the repository at this point in the history
  • Loading branch information
enchobelezirev committed Apr 15, 2024
1 parent 896ff37 commit 4af488e
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ private List<Asset> queryAssets(QuerySpec query) {
});
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ private List<ContractAgreement> queryAgreements(QuerySpec query) {
}
});
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ private List<ContractDefinition> queryContractDefinitions(QuerySpec query) {
}
});
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ private List<ContractNegotiation> queryNegotiations(QuerySpec query) {
});
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ private List<PolicyDefinition> queryPolicyDefinitions(QuerySpec query) {
}
});
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ public Map<Class<?>, List<Class<?>>> getSubtypeMap() {
Expression.class, List.of(LiteralExpression.class)
);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -158,4 +158,4 @@ private ServiceResult<Void> execute(EntityCommand command) {
return transactionContext.execute(() -> commandHandlerRegistry.execute(command).flatMap(ServiceResult::from));
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public Map<Class<?>, List<Class<?>>> getSubtypes() {
ProvisionedDataAddressResource.class, List.of(ProvisionedDataDestinationResource.class, ProvisionedContentResource.class)
);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -318,4 +318,4 @@ private Asset createAsset(String assetId) {
private Asset.Builder createAssetBuilder(String assetId) {
return Asset.Builder.newInstance().id(assetId).dataAddress(DataAddress.Builder.newInstance().type("any").build());
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ private ContractNegotiation createContractNegotiation(String negotiationId) {
.protocol("protocol")
.build();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -273,4 +273,4 @@ private ContractDefinition createContractDefinition() {
.contractPolicyId(UUID.randomUUID().toString())
.build();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -312,4 +312,4 @@ private ContractOffer createContractOffer() {
.assetId("test-asset")
.build();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -314,4 +314,4 @@ private Predicate<PolicyDefinition> hasId(String policyId) {
private PolicyDefinition createPolicy(String policyId) {
return PolicyDefinition.Builder.newInstance().policy(Policy.Builder.newInstance().build()).id(policyId).build();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -329,5 +329,4 @@ private TransferRequest transferRequest() {
.dataDestination(DataAddress.Builder.newInstance().type("type").build())
.build();
}

}
}

0 comments on commit 4af488e

Please sign in to comment.