Project

General

Profile

« Previous | Next » 

Revision 874c37b1

Added by Leszek Koltunski about 4 years ago

Allow the server to correct our notion of country.

View differences:

src/main/java/org/distorted/scores/RubikScores.java
82 82
    try
83 83
      {
84 84
      String s = UUID.randomUUID().toString();
85
      id = (s!=null ? s.hashCode():0);
85
      id = s.hashCode();
86 86
      }
87 87
    catch(Exception ex)
88 88
      {
......
333 333
      }
334 334

  
335 335
    // Special case: Dominicana. Its ISO-3166-alpha-2 country code is 'do' which we can't have here
336
    // because we later on map this to a resource name (the flag) and 'do' is a resevred Java keyword
336
    // because we later on map this to a resource name (the flag) and 'do' is a reserved Java keyword
337 337
    // and can't be a resource name.
338 338

  
339 339
    if( mCountry.equals("do") ) mCountry = "dm";
340 340
    }
341 341

  
342
///////////////////////////////////////////////////////////////////////////////////////////////////
343

  
344
  public void setCountry(String country)
345
    {
346
    mCountry = country;
347

  
348
    if( mCountry.equals("do") ) mCountry = "dm";  // see above
349
    }
350

  
342 351
///////////////////////////////////////////////////////////////////////////////////////////////////
343 352

  
344 353
  public long getRecord(int object, int size, int level)

Also available in: Unified diff