Skip to content

Commit

Permalink
Remove some static method modifiers
Browse files Browse the repository at this point in the history
A couple of instance-specific method (using the entry points list) were
set as static, thus preventing proper build.
  • Loading branch information
Pierre Jaury committed Jan 8, 2013
1 parent 0d0e645 commit 268828a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/com/sysdream/fino/InspectionStub.java
Expand Up @@ -168,7 +168,7 @@ public void run() {
* @param o the object
* @return a list of <code>Field</code> objects
*/
public static Vector<Field> listFields
public Vector<Field> listFields
(Object o)
{
final Vector<Field> result = new Vector<Field>();
Expand All @@ -192,7 +192,7 @@ public void run() {
* @param path the path from entry point
* @return a list of <code>Field</code> objects
*/
public static Vector<Field> listFields
public Vector<Field> listFields
(final int entryPoint,
final int[] path)
{
Expand Down Expand Up @@ -228,7 +228,7 @@ public void run() {
* @param path the path from entry point
* @return a list of <code>Method</code> objects
*/
public static Vector<Method> listMethods
public Vector<Method> listMethods
(final int entryPoint,
final int[] path)
{
Expand All @@ -241,7 +241,7 @@ public void run() {
* @param clazz the class object
* @return a list of <code>Constructor</code> objects
*/
public static Vector<Constructor> listConstructors
public Vector<Constructor> listConstructors
(Class clazz)
{
final Vector<Constructor> result = new Vector<Constructor>();
Expand All @@ -258,7 +258,7 @@ public void run() {
* @param className the class name
* @return a list of <code>Constructor</code> objects
*/
public static Vector<Constructor> listConstructors
public Vector<Constructor> listConstructors
(String className)
{
try {
Expand All @@ -276,7 +276,7 @@ public void run() {
* @param o the object
* @return the list of classes declared by the object
*/
public static Vector<Class> listClasses
public Vector<Class> listClasses
(Object o)
{
final Vector<Class> result = new Vector<Class>();
Expand All @@ -294,7 +294,7 @@ public void run() {
* @param path the path from the entry point
* @return a list of <code>Class</code> objects
*/
public static Vector<Class> listClasses
public Vector<Class> listClasses
(final int entryPoint,
final int[] path)
{
Expand All @@ -308,7 +308,7 @@ public void run() {
* @param path the path
* @return list of browsed fields
*/
public static Vector<Field> browsePath
public Vector<Field> browsePath
(final int entryPoint,
final int[] path)
{
Expand All @@ -329,7 +329,7 @@ public void run() {
* @param path the path
* @return the referenced object
*/
public static Object resolvePath
public Object resolvePath
(final int entryPoint,
final int[] path)
{
Expand Down

0 comments on commit 268828a

Please sign in to comment.