Skip to content

Commit be4ddbb

Browse files
committed
fix formatting
1 parent b251010 commit be4ddbb

2 files changed

Lines changed: 6 additions & 13 deletions

File tree

src/Deprecated.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -338,9 +338,11 @@ getVariablePPE(args...) = _ppe_obsolete()
338338
MeanMaxPPE(args...; kwargs...) = _ppe_obsolete()
339339
getEstimateFields(args...) = _ppe_obsolete()
340340

341-
getFactorState(args...) = error(
342-
"getFactorState is deprecated, use DFG.getRecipehyper or DFG.getRecipestate instead.",
343-
)
341+
function getFactorState(args...)
342+
return error(
343+
"getFactorState is deprecated, use DFG.getRecipehyper or DFG.getRecipestate instead.",
344+
)
345+
end
344346

345347
## ================================================================================
346348
## Deprecated in v0.28

src/services/CompareUtils.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -253,16 +253,7 @@ function compareVariable(
253253
skipsamples::Bool = true,
254254
)
255255
#
256-
skiplist = union(
257-
[
258-
:states,
259-
:atzone,
260-
:inzone,
261-
:blobentries,
262-
:bloblets
263-
],
264-
skip,
265-
)
256+
skiplist = union([:states, :atzone, :inzone, :blobentries, :bloblets], skip)
266257
TP = compareAll(A, B; skip = skiplist, show = show)
267258
varskiplist = skipsamples ? [:val; :bw] : Symbol[]
268259
skiplist = union([:variableType;], varskiplist)

0 commit comments

Comments
 (0)