test/jdk/java/io/Serializable/oldTests/CheckingEquality.java
author rriggs
Fri, 11 Oct 2019 13:11:56 -0400
changeset 58565 baa5969ecf34
parent 47216 71c04702a3d5
permissions -rw-r--r--
8231427: Warning cleanup in tests of java.io.Serializable Reviewed-by: darcy, lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
58565
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
     2
 * Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/* @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @summary it is new version of old test which was
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 *          /src/share/test/serialization/psiotest.java
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 *          Test pickling and unpickling an object with derived classes
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 *          and using a read special to serialize the "middle" class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
public class CheckingEquality {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    public static void main (String argv[]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
        System.err.println("\nRegression test of " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
                           "serialization/deserialization of " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
                           "complex objects\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        FileInputStream istream = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
            Thirdpsio objout = new Thirdpsio();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
            objout.init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
            FileOutputStream ostream = new FileOutputStream("psiotest1.tmp");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
            ObjectOutputStream p = new ObjectOutputStream(ostream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
            p.writeObject(objout);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
            p.flush();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
            ostream.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            istream = new FileInputStream("psiotest1.tmp");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            ObjectInputStream q = new ObjectInputStream(istream);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            Thirdpsio objin = (Thirdpsio)q.readObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            if (!objout.equals(objin)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                System.err.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                    "\nTEST FAILED: Original and read objects not equal.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            istream.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            System.err.println("\nTEST PASSED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            System.err.print("TEST FAILED: ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            System.err.println("\nInput remaining");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
            int ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                while ((ch = istream.read()) != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                    System.out.print(Integer.toString(ch, 16) + " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                System.err.println("\n");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            } catch (Exception f) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
            throw new Error();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
class Firstpsio implements java.io.Serializable {
58565
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
    86
    private static final long serialVersionUID = 1L;
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
    87
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    String one;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    int two;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    float three[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    void init() { /* called only before writing */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        one = "one";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        two = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        three = new float[5];
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        float f = 3.0f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
        for (int i=0; i<5 ; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
            f += 0.11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            three[i] = f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /* Compare two first objects */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    boolean equals(Firstpsio other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        boolean ret = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        if (!one.equals(other.one)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            System.err.println("\nfirstpsio: expected " + one +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                " actual " + other.one);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        if (two != other.two) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            System.err.println("\nfirstpsio: expected " + two +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                " actual " + other.two);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        for (int i = 0; i < three.length; i++ ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            if (three[i] != other.three[i]) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                System.err.println("\nfirstpsio: three[" + i + "] expected " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                    three[i] + " actual " + other.three[i]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
class Secondpsio extends Firstpsio  {
58565
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
   130
    private static final long serialVersionUID = 1L;
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
   131
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    String quatre;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    int cinq;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    private void writeObject(ObjectOutputStream pw) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        pw.writeObject(quatre);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        pw.writeInt(cinq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    private void readObject(ObjectInputStream pr)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        throws StreamCorruptedException, IOException, ClassNotFoundException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        if (one == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            System.err.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                "\nTEST FAILED: Superclass not serialized when " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                "it should have been");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            throw new StreamCorruptedException("Superclass not serialized " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                                               "when it should have been");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        quatre = (String)pr.readObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        cinq = pr.readInt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    boolean equals(Secondpsio other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        boolean ret = super.equals(other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        if (!quatre.equals(other.quatre)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            System.err.println("\nsecondpsio: quatre expected " + quatre +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                " actual " + other.quatre);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        if (cinq != other.cinq) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            System.err.println("\nsecondpsio: cinq expected " + cinq +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                " actual " + other.cinq);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /* called only before writing */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    void init() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        quatre = "4444";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        cinq = 5;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        super.init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
class Thirdpsio extends Secondpsio {
58565
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
   180
    private static final long serialVersionUID = 1L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    static String ign = "ignored";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    transient Object oh;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    int six;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    private static int seven[];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    protected byte eight = (byte)9;
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 5506
diff changeset
   189
    static final byte dcare = (byte) 128;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    private short nine = 8888;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
    long ten;
58565
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
   192
    @SuppressWarnings("serial") /* Incorrect declarations are being tested */
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
   193
    java.util.Enumeration<?> zero;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    boolean equals(Thirdpsio other) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        boolean ret = super.equals(other);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        if (six != other.six) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
            System.err.println("\nthirdpsio six " + six +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
                " actual " + other.six);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        if (eight != other.eight) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
            System.err.println("\nthirdpsio eight - expected " + eight +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
                " actual " + other.eight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        if (nine != other.nine) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
            System.err.println("\nthirdpsio nine - expected " + nine +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
               " actual " + other.nine);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        if (ten != other.ten) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            System.err.println("\nthirdpsio ten - expected " + ten +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
                " actual " + other.ten);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        if (zero != other.zero) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            System.err.println("\nthirdpsio zero - expected " + zero +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                " actual " + other.zero);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            ret = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    /* called only before writing */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    void init() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        six = 666;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        int s7[] = { 7, 7, 7 };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        seven = s7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        eight = (byte)8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
        nine = (short)9;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        ten = (long)100000;
58565
baa5969ecf34 8231427: Warning cleanup in tests of java.io.Serializable
rriggs
parents: 47216
diff changeset
   236
        java.util.Enumeration<?> em = null; /* default */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        super.init();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
}