Skip to content

Commit 1e33c15

Browse files
committed
Fix indentation.
1 parent db9b47b commit 1e33c15

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Shared/Samples/Trace utility network/TraceUtilityNetworkView.Model.swift

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -288,33 +288,33 @@ private extension SimpleMarkerSymbol {
288288
.init(style: .cross, color: .green, size: 20)
289289
}
290290
}
291-
292-
private extension UniqueValue {
293-
/// The rendering style for low voltage lines in the utility network.
294-
static var lowVoltage: UniqueValue {
295-
.init(
296-
label: "Low voltage",
297-
symbol: SimpleLineSymbol(style: .dash, color: .darkCyan, width: 3),
298-
values: [3]
299-
)
300-
}
301-
302-
/// The rendering style for medium voltage lines in the utility network.
303-
static var mediumVoltage: UniqueValue {
304-
.init(
305-
label: "Medium voltage",
306-
symbol: SimpleLineSymbol(style: .solid, color: .darkCyan, width: 3),
307-
values: [5]
308-
)
309-
}
291+
292+
private extension UniqueValue {
293+
/// The rendering style for low voltage lines in the utility network.
294+
static var lowVoltage: UniqueValue {
295+
.init(
296+
label: "Low voltage",
297+
symbol: SimpleLineSymbol(style: .dash, color: .darkCyan, width: 3),
298+
values: [3]
299+
)
310300
}
311301

312-
private extension UIColor {
313-
/// A custom color for electrical lines in the utility network.
314-
static var darkCyan: UIColor {
315-
.init(red: 0, green: 0.55, blue: 0.55, alpha: 1)
316-
}
302+
/// The rendering style for medium voltage lines in the utility network.
303+
static var mediumVoltage: UniqueValue {
304+
.init(
305+
label: "Medium voltage",
306+
symbol: SimpleLineSymbol(style: .solid, color: .darkCyan, width: 3),
307+
values: [5]
308+
)
317309
}
310+
}
311+
312+
private extension UIColor {
313+
/// A custom color for electrical lines in the utility network.
314+
static var darkCyan: UIColor {
315+
.init(red: 0, green: 0.55, blue: 0.55, alpha: 1)
316+
}
317+
}
318318

319319
private extension URL {
320320
/// The server containing the data for this sample.

0 commit comments

Comments
 (0)