Skip to content

Commit

Permalink
doc/style: javadoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bogovicj committed Jan 10, 2025
1 parent 22ed8bc commit 06f07ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/main/java/bdv/gui/TransformSelectorDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,11 @@
import ij.IJ;
import ij.ImageJ;
import ij.gui.ProgressBar;
import loci.poi.util.SystemOutLogger;
import net.imglib2.util.Pair;
import se.sawano.java.text.AlphanumericComparator;

/**
* Essentially a copy of {@link DatasetSelectorDialog} to work for
* Essentially a copy of DatasetSelectorDialog to work for
* transformation selection.
*
* Aim to deprecate this class in the future once DatasetSelectorDialog can
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/bdv/ij/ApplyBigwarpPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,9 @@ public static List<Double[]> getMatchedPoints(
* @param ltm the {@link LandmarkTableModel}
* @param transform the transform using to warp images (used for warped moving source option)
* @param fieldOfViewPointFilter the landmark name filter for FOV estimation
* @param bboxEst the bounding box estimation method
* @param outputResolution the resolution of the output image
* @param movingSource the moving source
* @param targetSource the target source
* @return the offset in physical units
*/
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/bigwarp/BigWarpInit.java
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ public static < T > LinkedHashMap< Source< T >, SourceInfo > createSources( BigW
/**
* Initialize BigWarp.
*
* @param <T> the type
* @param bwdata
* a BigWarpData instance
* @param src
Expand Down Expand Up @@ -402,6 +403,7 @@ public static < T > BigWarpData< T > add( BigWarpData< T > bwdata, LinkedHashMap
/**
* Initialize BigWarp.
*
* @param <T> the type
* @param bwdata
* a BigWarpData instance
* @param src
Expand Down Expand Up @@ -430,7 +432,6 @@ public static < T > BigWarpData< T > add( BigWarpData bwdata, Source< T > src, i
return bwdata;
}

@SuppressWarnings("unchecked")
public static < T > BigWarpData< T > add( BigWarpData< T > bwdata, LinkedHashMap< Source< T >, SourceInfo > sources, RealTransform transform, Supplier<String> transformUriSupplier )
{
for( Entry<Source<T>, SourceInfo> entry : sources.entrySet() ) {
Expand Down

0 comments on commit 06f07ef

Please sign in to comment.