comparison src/junotu/TabBoard.java @ 96:d6953ebfbe7e

TabBoard/TabCalendarBoard: Inserting cards that failed to resolve as empty, instead of skipping them
author Fox
date Thu, 23 Feb 2023 20:50:19 +0100
parents 666e6253fbdf
children f52a4c112d79
comparison
equal deleted inserted replaced
95:666e6253fbdf 96:d6953ebfbe7e
207 207
208 for( int i = 0; i < cardsSplit.length; i++ ) { 208 for( int i = 0; i < cardsSplit.length; i++ ) {
209 209
210 if( cardsSplit[i] == null ) { 210 if( cardsSplit[i] == null ) {
211 System.out.print("Column '"+card.titleGet()+"', identifier "+Long.toString(card.identifierGet())+": Failed to retrieve card identifier by index "+Integer.toString(i)+". Full cards tag: '"+cardsString+"'\n"); 211 System.out.print("Column '"+card.titleGet()+"', identifier "+Long.toString(card.identifierGet())+": Failed to retrieve card identifier by index "+Integer.toString(i)+". Full cards tag: '"+cardsString+"'\n");
212 insertCard( null, -1 );
212 continue; 213 continue;
213 } 214 }
214 215
215 insertCard( cardsSplit[i], -1 ); 216 insertCard( cardsSplit[i], -1 );
216 217