src/share/classes/com/sun/corba/se/spi/orb/OperationFactory.java

changeset 205
b2fff4b7e8cd
parent 158
91006f157c46
child 475
39d15bbb5741
     1.1 --- a/src/share/classes/com/sun/corba/se/spi/orb/OperationFactory.java	Fri Sep 24 16:38:05 2010 -0700
     1.2 +++ b/src/share/classes/com/sun/corba/se/spi/orb/OperationFactory.java	Fri Sep 24 22:42:14 2010 -0700
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -25,6 +25,7 @@
    1.11  package com.sun.corba.se.spi.orb ;
    1.12  
    1.13  import java.util.StringTokenizer ;
    1.14 +import java.util.Arrays ;
    1.15  
    1.16  import java.lang.reflect.Array ;
    1.17  
    1.18 @@ -446,7 +447,7 @@
    1.19          public String toString() {
    1.20              return "sequenceAction(separator=\"" + sep +
    1.21                  "\",actions=" +
    1.22 -                ObjectUtility.compactObjectToString(actions) + ")" ;
    1.23 +                Arrays.toString(actions) + ")" ;
    1.24          }
    1.25      }
    1.26  
    1.27 @@ -533,7 +534,7 @@
    1.28  
    1.29          public String toString() {
    1.30              return "mapSequenceAction(" +
    1.31 -                ObjectUtility.compactObjectToString(op) + ")" ;
    1.32 +                Arrays.toString(op) + ")" ;
    1.33          }
    1.34      }
    1.35  

mercurial