-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbugs.html
84 lines (74 loc) · 2.32 KB
/
bugs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>BeanShell - Known Issues</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="css/my_styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<aside>
<nav>
<ul class="menu">
<li><a href="home.html">Home</a>
</li>
<li><a href="intro.html">Intro</a>
</li>
<li> <a href="docs.html">Docs</a>
</li>
<li> <a href="download.html">Download</a>
</li>
<li> <a href="contact.html">Contact</a>
</li>
<li> <a href="https://github.com/beanshell/beanshell/wiki">
Community Wiki</a>
</li>
<li> <a href="developer.html">Developer</a>
</li>
<li> <a href="license.html">License</a>
</li>
<li> <a href="beany.html">Beany</a>
</li>
<li> <a href="http://www.amazon.com/exec/obidos/ASIN/0596002858">
<img alt="Learning Java" src="images/lj2.png" width="100px"> <br>
<span class="small"> Check out my book:<br>
Learning Java,<br>
O'Reilly & Associates </span>
</a>
</li>
</ul>
</nav>
</aside>
<article>
<section>
<title>Known Issues</title>
<h1>Known Issues</h1>
<h3>Please see the <a href="https://github.com/beanshell/beanshell/issues">
<b>Bug Tracking System on GitHub</b>
</a></h3>
<p>You may also email bug repots and example code to <a
href="mailto:[email protected]">[email protected]</a>
</p>
<ul>
<li>Typing certain extended statements interactively:
e.g. "if (foo) blah();" or "try {} catch {}" on the
command line waits for an extra ";" or [return] at the end of line.</li>
</ul>
<h3>Java bugs that cause problems for BeanShell</h3>
<p>
<ul>
<li>Serialization - <a href="http://developer.java.sun.com/developer/bugParade/bugs/4171142.html">
Bug number 4171142</a> causes serialized bsh scripts to fail to load if
they contain any primitive types (e.g. int, float, double). This Java bug
is fixed in 1.4. See the bug link for a workaround.</li>
<li> Java 1.1 Bug running the interpreter on the command line under Solaris.
Solaris green threads blocks all threads on I/O. Workaround - use native threads or use
the Console.
(See the FAQ).</li>
</ul>
</p>
</page>
</section>
</article>
</body>
</html>