Convert to using properly nested inner-classes.
-----------------------------------------------

                 Key: CASSANDRA-2125
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-2125
             Project: Cassandra
          Issue Type: Improvement
          Components: Core
            Reporter: Gary Dusbabek
            Priority: Trivial
             Fix For: 0.8


We do:
class Foo{}
class InnerFoo{}
in Foo.java where we should be doing:
class Foo{
    private /*possibly static*/ class InnerFoo{}
}

The semantics of the former are not well-defined per the JLS and will get messy 
if we ever want a class called InnerFoo.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to