mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00
Export the necessary functions to enable servlet support to be subclassed
This is in preparation for xml-cocoon support
This commit is contained in:
parent
aa49d4af62
commit
f775d18b2c
3 changed files with 12 additions and 12 deletions
|
@ -22,7 +22,7 @@ import java.lang.reflect.*;
|
|||
import java.util.*;
|
||||
import java.beans.*;
|
||||
|
||||
class reflect {
|
||||
public class reflect {
|
||||
|
||||
static { loadLibrary("reflect"); }
|
||||
|
||||
|
@ -51,7 +51,7 @@ class reflect {
|
|||
//
|
||||
// Helper routines which encapsulate the native methods
|
||||
//
|
||||
static void setResult(long result, Object value) {
|
||||
public static void setResult(long result, Object value) {
|
||||
if (value == null) return;
|
||||
|
||||
if (value instanceof java.lang.String) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue