Pass PHP arrays to Java as hash tables; minor cleanup

This commit is contained in:
Sam Ruby 2000-07-21 22:08:50 +00:00
parent be6c3d8b62
commit eb8a55893d
4 changed files with 208 additions and 98 deletions

View file

@ -236,7 +236,6 @@ public class reflect {
public void Invoke
(Object object, String method, Object args[], long result)
{
try {
Vector matches = new Vector();
@ -284,7 +283,6 @@ public class reflect {
public void GetSetProp
(Object object, String prop, Object args[], long result)
{
System.out.println(object + "." + prop);
try {
for (Class jclass = object.getClass();;jclass=(Class)object) {