Skip to content

Commit

Permalink
bug #63: back out
Browse files Browse the repository at this point in the history
recent change which shows the issue.
  • Loading branch information
jbfaden committed Jul 10, 2023
1 parent 5d9a744 commit 1c5b467
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QDataSet/src/org/das2/qds/ops/Ops.java
Original file line number Diff line number Diff line change
Expand Up @@ -13782,7 +13782,7 @@ public static QDataSet bundle( QDataSet ds1, QDataSet ds2 ) {
QDataSet dep0= (QDataSet)ds1.property(QDataSet.DEPEND_0);
if ( dep0!=null ) {
QDataSet dep1= (QDataSet)ds2.property(QDataSet.DEPEND_0);
if ( dep1.length()>0 && equivalent( dep0.slice(0), dep1.slice(0) ) ) {
if ( dep1!=null && dep1.length()>0 && equivalent( dep0.slice(0), dep1.slice(0) ) ) {
//ds.putProperty( QDataSet.DEPEND_0, dep0 );
logger.fine("consider https://github.com/das-developers/das2java/issues/63");
}
Expand Down

0 comments on commit 1c5b467

Please sign in to comment.