Skip to content

Commit

Permalink
Merge remote-tracking branch 'remotes/origin/dev/ethomas/EUCA-3899' i…
Browse files Browse the repository at this point in the history
…nto testing
  • Loading branch information
Evan Thomas committed Oct 26, 2012
2 parents 2b3c658 + 723b9ea commit c1158e3
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -86,9 +86,9 @@ public void start( AcceptsOneWidget container, EventBus eventBus ) {
this.clientFactory.getShellView( ).getContentView( ).setContentTitle( TITLE ); this.clientFactory.getShellView( ).getContentView( ).setContentTitle( TITLE );
ReportView reportView = this.clientFactory.getReportView( ); ReportView reportView = this.clientFactory.getReportView( );
reportView.setPresenter( this ); reportView.setPresenter( this );

// start yesterday (current time - 24H * 60 M * 60 S * 1000MS)
reportView.init( new Date( ), reportView.init( new Date( System.currentTimeMillis() - 24 * 60 * 60 * 1000L ),
new Date( ), new Date( System.currentTimeMillis() - 24 * 60 * 60 * 1000L ),
new String[] { "Instance", "S3", "Volume", "Snapshot", "Elastic-IP", "Capacity"}); new String[] { "Instance", "S3", "Volume", "Snapshot", "Elastic-IP", "Capacity"});
container.setWidget( reportView ); container.setWidget( reportView );


Expand Down

0 comments on commit c1158e3

Please sign in to comment.