Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Treat public static fields as constants and declare them as final. Consider the use of enum types.

Code Block
bgColor#ccccff
package org.apache.xpath.compiler;

public class FunctionTable {public class MyClass {
    public static final int LEFT  = 1;
    public static final int RIGHT FuncLoader= m_functions2;
}
Code Block
bgColor#ccccff
...
public static final FuncLoader m_functions;
...

...