java/src/main/java/com/alexa/awisapi/AWIS.java [74:81]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Date now = new Date();
    SimpleDateFormat formatAWS = new SimpleDateFormat(DATEFORMAT_AWS);
    formatAWS.setTimeZone(TimeZone.getTimeZone("GMT"));
    this.amzDate = formatAWS.format(now);

    SimpleDateFormat formatCredential = new SimpleDateFormat(DATEFORMAT_CREDENTIAL);
    formatCredential.setTimeZone(TimeZone.getTimeZone("GMT"));
    this.dateStamp = formatCredential.format(now);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



legacy/java/UrlInfo.java [48:55]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Date now = new Date();
        SimpleDateFormat formatAWS = new SimpleDateFormat(DATEFORMAT_AWS);
        formatAWS.setTimeZone(TimeZone.getTimeZone("GMT"));
    		this.amzDate = formatAWS.format(now);

        SimpleDateFormat formatCredential = new SimpleDateFormat(DATEFORMAT_CREDENTIAL);
        formatCredential.setTimeZone(TimeZone.getTimeZone("GMT"));
        this.dateStamp = formatCredential.format(now);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



