- To: netcdf-java@xxxxxxxxxxxxxxxx
- Subject: [netcdf-java] Minor bug in ucar.nc2.NetcdfFile
- From: Martin Desruisseaux <martin.desruisseaux@xxxxxxxxxxx>
- Date: Mon, 31 Oct 2011 10:23:34 +0100
Hello allThe cdm/src/main/java/ucar/nc2/NetcdfFile.java file on trunk (revision 14340) seems to have a minor bug at line 1433. The current code is:
if (id == null) setId(findAttValueIgnoreCase(null, "_Id", null)); if (title == null) setId(findAttValueIgnoreCase(null, "_Title", null)); I presume that the last line should be: setTitle(findAttValueIgnoreCase(null, "_Title", null)); Regards, Martin
- Follow-Ups:
- Re: [netcdf-java] Minor bug in ucar.nc2.NetcdfFile
- From: John Caron
- Re: [netcdf-java] Minor bug in ucar.nc2.NetcdfFile