JSch
is just grabbing it from a file somewhere, possibly ~/.ssh
, possibly somewhere else.
[INFO] C:\Users\eglijan\.ssh has been succesfully created.
Please check its access permission.
scijava-ui-swing
repo contains all the widget implementations for Swing, e.g. SwingNumberWidget
.
#@
parameters is achieved by ParameterScriptProcessor
in scijava-common
.
LegacyUI
from imagej-legacy; it has higher priority than the SwingSDIUI
from imagej-ui-swing. If you exclude imagej-legacy than imagej-ui-swing's takes precedence. If you have a barebones environment without those, then the HeadlessUI
of scijava-common is picked up.
imagej-legacy
issue. I am looking at String => ImagePlus
and String => Dataset
conversion for opened images, and added a test (imagej/imagej-legacy@b13c8f9) that I am planning to flesh out to cover most use cases. JaCoCo tells me that this line in StringToImagePlusConverter
is never executed.canConvert(Object, Class)
to canConvert(Object, Type)
, then it hangs in the test. I suspect some infinite loop, but can’t wrap my head around it. Do you have any ideas/pointers?