jdk/test/java/io/File/SetAccess.java
author ohair
Tue, 28 Dec 2010 15:53:50 -0800
changeset 7668 d4a77089c587
parent 6884 65b1fa0a0fae
child 8158 77d9c0f1c19f
permissions -rw-r--r--
6962318: Update copyright year Reviewed-by: xdono
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 6884
diff changeset
     2
 * Copyright (c) 2005, 2010, 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
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
    25
   @bug 4167472 5097703 6216563 6284003 6728842 6464744
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
   @summary Basic test for setWritable/Readable/Executable methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
    30
import java.nio.file.attribute.*;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
public class SetAccess {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
    public static void main(String[] args) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
        File d = new File(System.getProperty("test.dir", "."));
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
        File f = new File(d, "x.SetAccessPermission");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
        if (f.exists() && !f.delete())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
            throw new Exception("Can't delete test file: " + f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
        OutputStream o = new FileOutputStream(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
        o.write('x');
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
        o.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        doTest(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        f = new File(d, "x.SetAccessPermission.dir");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        if (f.exists() && !f.delete())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
            throw new Exception("Can't delete test dir: " + f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        if (!f.mkdir())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            throw new Exception(f + ": Cannot create directory");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        doTest(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    public static void doTest(File f) throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        if (!System.getProperty("os.name").startsWith("Windows")) {
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
    54
            if (!f.setReadOnly())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
    55
                 throw new Exception(f + ": setReadOnly Failed");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            if (!f.setWritable(true, true) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                !f.canWrite() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                permission(f).charAt(2) != 'w')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                throw new Exception(f + ": setWritable(true, ture) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
            if (!f.setWritable(false, true) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                f.canWrite() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                permission(f).charAt(2) != '-')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                throw new Exception(f + ": setWritable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            if (!f.setWritable(true, false) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                !f.canWrite() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                !permission(f).matches(".(.w.){3}"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                throw new Exception(f + ": setWritable(true, false) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            if (!f.setWritable(false, false) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                f.canWrite() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
                !permission(f).matches(".(.-.){3}"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                throw new Exception(f + ": setWritable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            if (!f.setWritable(true) || !f.canWrite() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                permission(f).charAt(2) != 'w')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                throw new Exception(f + ": setWritable(true, ture) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            if (!f.setWritable(false) || f.canWrite() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                permission(f).charAt(2) != '-')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                throw new Exception(f + ": setWritable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            if (!f.setExecutable(true, true) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                !f.canExecute() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                permission(f).charAt(3) != 'x')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                throw new Exception(f + ": setExecutable(true, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
            if (!f.setExecutable(false, true) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                f.canExecute() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                permission(f).charAt(3) != '-')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                throw new Exception(f + ": setExecutable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            if (!f.setExecutable(true, false) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                !f.canExecute() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
                !permission(f).matches(".(..x){3}"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                throw new Exception(f + ": setExecutable(true, false) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
            if (!f.setExecutable(false, false) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                f.canExecute() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                !permission(f).matches(".(..-){3}"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                throw new Exception(f + ": setExecutable(false, false) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            if (!f.setExecutable(true) || !f.canExecute() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                permission(f).charAt(3) != 'x')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                throw new Exception(f + ": setExecutable(true, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            if (!f.setExecutable(false) || f.canExecute() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                permission(f).charAt(3) != '-')
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                throw new Exception(f + ": setExecutable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            if (!f.setReadable(true, true) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                !f.canRead() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                permission(f).charAt(1) != 'r')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                throw new Exception(f + ": setReadable(true, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            if (!f.setReadable(false, true) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                f.canRead() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                permission(f).charAt(1) != '-')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                throw new Exception(f + ": setReadable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            if (!f.setReadable(true, false) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                !f.canRead() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                !permission(f).matches(".(r..){3}"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                throw new Exception(f + ": setReadable(true, false) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            if (!f.setReadable(false, false) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                f.canRead() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                !permission(f).matches(".(-..){3}"))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                throw new Exception(f + ": setReadable(false, false) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            if (!f.setReadable(true) || !f.canRead() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                permission(f).charAt(1) != 'r')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                throw new Exception(f + ": setReadable(true, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            if (!f.setReadable(false) || f.canRead() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                permission(f).charAt(1) != '-')
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                throw new Exception(f + ": setReadable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            //Windows platform
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   124
            if (f.isFile()) {
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   125
                if (!f.setReadOnly())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   126
                    throw new Exception(f + ": setReadOnly Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   127
                if (!f.setWritable(true, true) || !f.canWrite())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   128
                    throw new Exception(f + ": setWritable(true, ture) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   129
                if (!f.setWritable(true, false) || !f.canWrite())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   130
                    throw new Exception(f + ": setWritable(true, false) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   131
                if (!f.setWritable(true) || !f.canWrite())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   132
                    throw new Exception(f + ": setWritable(true, ture) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   133
                if (!f.setExecutable(true, true) || !f.canExecute())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   134
                    throw new Exception(f + ": setExecutable(true, true) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   135
                if (!f.setExecutable(true, false) || !f.canExecute())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   136
                    throw new Exception(f + ": setExecutable(true, false) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   137
                if (!f.setExecutable(true) || !f.canExecute())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   138
                    throw new Exception(f + ": setExecutable(true, true) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   139
                if (!f.setReadable(true, true) || !f.canRead())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   140
                    throw new Exception(f + ": setReadable(true, true) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   141
                if (!f.setReadable(true, false) || !f.canRead())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   142
                    throw new Exception(f + ": setReadable(true, false) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   143
                if (!f.setReadable(true) || !f.canRead())
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   144
                    throw new Exception(f + ": setReadable(true, true) Failed");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   145
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
            if (f.isDirectory()) {
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   147
                // setWritable should fail on directories because the DOS readonly
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   148
                // attribute prevents a directory from being deleted.
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   149
                if (f.setWritable(false, true))
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   150
                    throw new Exception(f + ": setWritable(false, true) Succeeded");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   151
                if (f.setWritable(false, false))
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   152
                    throw new Exception(f + ": setWritable(false, false) Succeeded");
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   153
                if (f.setWritable(false))
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   154
                    throw new Exception(f + ": setWritable(false) Succeeded");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                if (!f.setWritable(false, true) || f.canWrite())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                    throw new Exception(f + ": setWritable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                if (!f.setWritable(false, false) || f.canWrite())
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   159
                    throw new Exception(f + ": setWritable(false, false) Failed");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                if (!f.setWritable(false) || f.canWrite())
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   161
                    throw new Exception(f + ": setWritable(false) Failed");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            if (f.setExecutable(false, true))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                throw new Exception(f + ": setExecutable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            if (f.setExecutable(false, false))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                throw new Exception(f + ": setExecutable(false, false) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
            if (f.setExecutable(false))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                throw new Exception(f + ": setExecutable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            if (f.setReadable(false, true))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                throw new Exception(f + ": setReadable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            if (f.setReadable(false, false))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                throw new Exception(f + ": setReadable(false, false) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            if (f.setReadable(false))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                throw new Exception(f + ": setReadable(false, true) Failed");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        if (f.exists() && !f.delete())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            throw new Exception("Can't delete test dir: " + f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    private static String permission(File f) throws Exception {
6884
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   181
        PosixFileAttributes attrs = Attributes.readPosixFileAttributes(f.toPath());
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   182
        String type = attrs.isDirectory() ? "d" : " ";
65b1fa0a0fae 6728842: File.setReadOnly does not make a directory read-only (win)
alanb
parents: 5506
diff changeset
   183
        return type + PosixFilePermissions.toString(attrs.permissions());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
}