This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 228700
Collapse All | Expand All

(-)a/openide.loaders/src/org/openide/loaders/DefaultDataObject.java (-1 / +1 lines)
Lines 263-269 Link Here
263
                    try {
263
                    try {
264
                        int len = is.read (arr);
264
                        int len = is.read (arr);
265
                        for (int i = 0; i < len; i++) {
265
                        for (int i = 0; i < len; i++) {
266
                            if (arr[i] >= 0 && arr[i] <= 31 && arr[i] != '\n' && arr[i] != '\r' && arr[i] != '\t') {
266
                            if (arr[i] >= 0 && arr[i] <= 31 && arr[i] != '\n' && arr[i] != '\r' && arr[i] != '\t' && arr[i] != '\f') {
267
                                return;
267
                                return;
268
                            }
268
                            }
269
                        }
269
                        }

Return to bug 228700