Skip to content

Commit

Permalink
Merge branch 'master' of github.com:saalfeldlab/n5-ij
Browse files Browse the repository at this point in the history
  • Loading branch information
bogovicj committed Nov 26, 2024
2 parents ea45ed5 + 855c29b commit c4d427b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Parameters
* You may provide fewer values than the data dimension. In that case, the list will be expanded to necessary size with the last value, for example `64`, will expand to `64,64,64` for 3D data.
* `Create Pyramid` - If checked, a multiscale pyramid will be created (if possible). See below for details.
* `Downsampling method` - The downsampling method to be used if a multiscale pyramid can be created. See below for details.
* `Compression` - The compression method to be used for chucnks / blocks.
* `Compression` - The compression method to be used for chunks / blocks.
* `metadata type` - style and type of metadata to store (see also [Metadata](#metadata))
* `Thread count` - number of threads used for parallel writing (see also [Cloud writing benchmarks](#cloud-writing-benchmarks))
* `Overwrite` - If checked, existing data may be deleted and overwritten without warning.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ public ImprovedFormattedTextField(AbstractFormatter formatter) {
public ImprovedFormattedTextField(AbstractFormatter formatter, Object aValue) {

this(formatter);
String strValue = aValue instanceof String ? (String)aValue : "";
try {
setValue(new URI(""));
setValue(new URI(strValue));
} catch (URISyntaxException e) {
e.printStackTrace();
}
Expand Down

0 comments on commit c4d427b

Please sign in to comment.