[jira] Created: (HIVEMIND-205) Endlessly recursive call to cunstructRegistry

View: New views
3 Messages — Rating Filter:   Alert me  

[jira] Created: (HIVEMIND-205) Endlessly recursive call to cunstructRegistry

by JIRA hivemind-dev@jakarta.apache.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Endlessly recursive call to cunstructRegistry
---------------------------------------------

                 Key: HIVEMIND-205
                 URL: https://issues.apache.org/jira/browse/HIVEMIND-205
             Project: HiveMind
          Issue Type: Bug
            Reporter: Brian Crow
             Fix For: 2.0-alpha-1


ResgistryBuilder constructRegistry() endless calls itself.

public Registry constructRegistry()
{
    return constructRegistry();
}

return constructRegistry();

should be:

return constructRegistry(Locale.getDefault())

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HIVEMIND-205) Endlessly recursive call to constructRegistry

by JIRA hivemind-dev@jakarta.apache.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


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

Brian Crow updated HIVEMIND-205:
--------------------------------

    Description:
ResgistryBuilder constructRegistry() endless calls itself.

public Registry constructRegistry()
{
    return constructRegistry();
}

RegistryBuider:130
return constructRegistry();

should be:

return constructRegistry(Locale.getDefault())

  was:
ResgistryBuilder constructRegistry() endless calls itself.

public Registry constructRegistry()
{
    return constructRegistry();
}

return constructRegistry();

should be:

return constructRegistry(Locale.getDefault())

        Summary: Endlessly recursive call to constructRegistry  (was: Endlessly recursive call to cunstructRegistry)

> Endlessly recursive call to constructRegistry
> ---------------------------------------------
>
>                 Key: HIVEMIND-205
>                 URL: https://issues.apache.org/jira/browse/HIVEMIND-205
>             Project: HiveMind
>          Issue Type: Bug
>            Reporter: Brian Crow
>             Fix For: 2.0-alpha-1
>
>
> ResgistryBuilder constructRegistry() endless calls itself.
> public Registry constructRegistry()
> {
>     return constructRegistry();
> }
> RegistryBuider:130
> return constructRegistry();
> should be:
> return constructRegistry(Locale.getDefault())

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (HIVEMIND-205) Endlessly recursive call to constructRegistry

by JIRA hivemind-dev@jakarta.apache.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


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

Achim Hügen resolved HIVEMIND-205.
----------------------------------

       Resolution: Fixed
    Fix Version/s:     (was: 2.0-alpha-1)
                   2.0-alpha-2

> Endlessly recursive call to constructRegistry
> ---------------------------------------------
>
>                 Key: HIVEMIND-205
>                 URL: https://issues.apache.org/jira/browse/HIVEMIND-205
>             Project: HiveMind
>          Issue Type: Bug
>            Reporter: Brian Crow
>             Fix For: 2.0-alpha-2
>
>
> ResgistryBuilder constructRegistry() endless calls itself.
> public Registry constructRegistry()
> {
>     return constructRegistry();
> }
> RegistryBuider:130
> return constructRegistry();
> should be:
> return constructRegistry(Locale.getDefault())

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.