mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
19.30.2014 377b2709c64b32fe93905b466482216c2cc0581c
opendj3-server-dev/src/server/org/opends/server/schema/UTCTimeSyntax.java
@@ -831,17 +831,14 @@
   *
   * @return  The attribute value created from the date.
   */
  public static AttributeValue createUTCTimeValue(Date d)
  public static ByteString createUTCTimeValue(Date d)
  {
    String valueString;
    synchronized (dateFormatLock)
    {
      valueString = dateFormat.format(d);
    }
    return AttributeValues.create(ByteString.valueOf(valueString),
        ByteString.valueOf(valueString));
    return ByteString.valueOf(valueString);
  }