/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk

« back to all changes in this revision

Viewing changes to src/main/java/common/Utils.java

  • Committer: Gustav Hartvigsson
  • Date: 2017-08-18 12:24:30 UTC
  • mto: (15.1.9 magstudentportal-more-db)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: gustav.hartvigsson@gmail.com-20170818122430-p9pkxdcpov38xo5o
* humm...

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
  static public String
16
16
  real_hash_func (String t, String s) {
17
17
    int a = t.getBytes()[0];
 
18
    @SuppressWarnings("unused")
18
19
    int b = t.getBytes()[a%t.length()];
19
20
    
 
21
    /* Rotate the string as here:
 
22
     *  
 
23
     */
 
24
    
20
25
    
21
26
    return null;
22
27
  }