Skip to content

Commit

Permalink
rm device paramter from ArrayJ constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Oct 17, 2024
1 parent f40abd4 commit 6652e26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/net/clesperanto/core/ArrayJ.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ public ArrayJ(final _ArrayJ _arrayj) {
numDimensions = _arrayj.getDimension();
}

// TODO: remove after adapting Tier methods
public ArrayJ(final _ArrayJ _arrayj, Object IGNORED_just_so_that_Tier_methods_work_unmodified_REMOVE_LATER) {
this(_arrayj);
}
// // TODO: remove after adapting Tier methods
// public ArrayJ(final _ArrayJ _arrayj, Object IGNORED_just_so_that_Tier_methods_work_unmodified_REMOVE_LATER) {
// this(_arrayj);
// }

// TODO: make package-private?
public ArrayJ(final long width, final long height, final long depth, final int numDimensions,
Expand Down

0 comments on commit 6652e26

Please sign in to comment.