Revision ebead1b5 src/gr/grnet/pithos/web/client/FileList.java

b/src/gr/grnet/pithos/web/client/FileList.java
55 55
import com.google.gwt.i18n.client.DateTimeFormat;
56 56
import com.google.gwt.resources.client.ImageResource;
57 57
import com.google.gwt.safehtml.client.SafeHtmlTemplates;
58
import com.google.gwt.safehtml.client.SafeHtmlTemplates.Template;
59 58
import com.google.gwt.safehtml.shared.SafeHtml;
60 59
import com.google.gwt.safehtml.shared.SafeHtmlBuilder;
61 60
import com.google.gwt.user.cellview.client.CellTable;
......
386 385
	/**
387 386
	 * Update the display of the file list.
388 387
	 */
389
	void update(@SuppressWarnings("unused") boolean sort) {
388
	void update() {
390 389
		showCellTable();
391 390
	}
392 391

  
......
553 552
			this.header=header;
554 553
		}
555 554
		@Override
556
		public void update(@SuppressWarnings("unused") String value) {
555
		public void update(String value) {
557 556
			header.setSorted(true);
558 557
			header.toggleReverseSort();
559 558

  
......
565 564
	        }
566 565
	        celltable.redrawHeaders();
567 566
	        sortFiles(property, header.getReverseSort());
568
	        FileList.this.update(true);			
567
	        FileList.this.update();			
569 568
		}
570 569
		
571 570
	}

Also available in: Unified diff