In org.apache.xindice.core.objects.Variant is this code
 
  public void set(Object object) {
      this.value = value;
      type = value != null ? Types.OBJECT
                           : Types.EMPTY;
   }
 
should this be
 
this.value = object;
type = object != null .....

Reply via email to