View Javadoc
1   /***
2    * 
3    */
4   package com.fernsroth.squashfs;
5   
6   import java.util.Date;
7   
8   /***
9    * 
10   * @author Joseph M. Ferner (Near Infinity Corporation)
11   */
12  public class DefaultSquashFSSystem implements SquashFSSystem {
13  
14      /***
15       * {@inheritDoc}
16       */
17      public Date getCurrentDate() {
18          return new Date();
19      }
20  
21  }