Skip to content

Commit 451e0e3

Browse files
committed
remove duplicate ndim definition
1 parent 3162fe2 commit 451e0e3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/n/mod.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -175,11 +175,7 @@ where
175175
S: StrategyND<D>,
176176
{
177177
fn ndim(&self) -> usize {
178-
if self.data.values.len() == 1 {
179-
0
180-
} else {
181-
self.data.values.ndim()
182-
}
178+
self.data.ndim()
183179
}
184180

185181
fn validate(&self) -> Result<(), ValidateError> {

0 commit comments

Comments
 (0)