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 31962
Collapse All | Expand All

(-)core/external/xml-apis-license.txt (-3 / +3 lines)
Lines 55-62 Link Here
55
====================================================================
55
====================================================================
56
License for DOM:
56
License for DOM:
57
57
58
W3C® SOFTWARE NOTICE AND LICENSE
58
W3C(r) SOFTWARE NOTICE AND LICENSE
59
Copyright © 1994-2001 World
59
Copyright (c) 1994-2001 World
60
Wide Web Consortium, <a href="http://www.w3.org/">World
60
Wide Web Consortium, <a href="http://www.w3.org/">World
61
Wide Web Consortium</a>, (<a href=
61
Wide Web Consortium</a>, (<a href=
62
"http://www.lcs.mit.edu/">Massachusetts Institute of
62
"http://www.lcs.mit.edu/">Massachusetts Institute of
Lines 84-90 Link Here
84
terms and conditions. If none exist, a short notice of the
84
terms and conditions. If none exist, a short notice of the
85
following form (hypertext is preferred, text is permitted) should
85
following form (hypertext is preferred, text is permitted) should
86
be used within the body of any redistributed or derivative code:
86
be used within the body of any redistributed or derivative code:
87
"Copyright © [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of
87
"Copyright (c) [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of
88
Technology, Institut National de
88
Technology, Institut National de
89
Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
89
Recherche en Informatique et en Automatique, Keio University). All Rights Reserved.
90
http://www.w3.org/Consortium/Legal/"
90
http://www.w3.org/Consortium/Legal/"
(-)nbbuild/antsrc/org/netbeans/nbbuild/MakeLNBM.java (-1 / +1 lines)
Lines 59-65 Link Here
59
		try {
59
		try {
60
		    InputStream is = new FileInputStream (file);
60
		    InputStream is = new FileInputStream (file);
61
		    try {
61
		    try {
62
			Reader r = new InputStreamReader (is);
62
			Reader r = new InputStreamReader (is,"UTF-8");
63
			char[] buf = new char[4096];
63
			char[] buf = new char[4096];
64
			int len;
64
			int len;
65
			while ((len = r.read (buf)) != -1)
65
			while ((len = r.read (buf)) != -1)
(-)nbbuild/antsrc/org/netbeans/nbbuild/MakeNBM.java (-1 / +1 lines)
Lines 56-62 Link Here
56
		try {
56
		try {
57
		    InputStream is = new FileInputStream (file);
57
		    InputStream is = new FileInputStream (file);
58
		    try {
58
		    try {
59
			Reader r = new InputStreamReader (is);
59
			Reader r = new InputStreamReader (is, "UTF-8");
60
			char[] buf = new char[4096];
60
			char[] buf = new char[4096];
61
			int len;
61
			int len;
62
			while ((len = r.read (buf)) != -1)
62
			while ((len = r.read (buf)) != -1)

Return to bug 31962