You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by "Savva Kolbachev (JIRA)" <ji...@apache.org> on 2015/08/05 12:39:04 UTC

[jira] [Assigned] (CAY-2020) typo: correction to upper alpha range in Rot13PasswordEncoder

     [ https://issues.apache.org/jira/browse/CAY-2020?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Savva Kolbachev reassigned CAY-2020:
------------------------------------

    Assignee: Savva Kolbachev

> typo: correction to upper alpha range in Rot13PasswordEncoder
> -------------------------------------------------------------
>
>                 Key: CAY-2020
>                 URL: https://issues.apache.org/jira/browse/CAY-2020
>             Project: Cayenne
>          Issue Type: Bug
>          Components: Core Library
>    Affects Versions: 4.0.M2, 4.0.M3
>            Reporter: Patrick Robinson
>            Assignee: Savva Kolbachev
>            Priority: Minor
>         Attachments: patch.txt
>
>
> Typo in:
> cayenne-server/src/main/java/org/apache/cayenne/configuration/Rot13PasswordEncoder.java
> in the current (as of 07/13/2015) dev snapshot.  Line 71:
> {code}
>             else if ((c >= 'n' && c <= 'z') || (c >= 'A' && c <= 'Z'))
> {code}
> should be:
> {code}
>             else if ((c >= 'n' && c <= 'z') || (c >= 'N' && c <= 'Z'))
> {code}
> Patch attached.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)