Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
abcl
abcl
Commits
6e362697
Commit
6e362697
authored
Aug 19, 2011
by
ehuelsmann@1c010e3e-69d0-11dd-93a8-456734b0d56f
Browse files
Remove meaningless 'final' classification on a method and an unused variable.
parent
6439146f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/org/armedbear/lisp/Lisp.java
View file @
6e362697
...
...
@@ -1284,12 +1284,11 @@ public final class Lisp
return
null
;
}
public
static
final
byte
[]
readFunctionBytes
(
final
Pathname
name
)
{
public
static
byte
[]
readFunctionBytes
(
final
Pathname
name
)
{
final
LispThread
thread
=
LispThread
.
currentThread
();
Pathname
load
=
null
;
LispObject
truenameFasl
=
Symbol
.
LOAD_TRUENAME_FASL
.
symbolValue
(
thread
);
LispObject
truename
=
Symbol
.
LOAD_TRUENAME
.
symbolValue
(
thread
);
Pathname
fasl
=
null
;
if
(
truenameFasl
instanceof
Pathname
)
{
load
=
Pathname
.
mergePathnames
(
name
,
(
Pathname
)
truenameFasl
,
Keyword
.
NEWEST
);
}
else
if
(
truename
instanceof
Pathname
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment