repo.or.cz
/
aco.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move abstract method definitions to abstract ASPheromoneStrategy class
[aco.git]
/
protoas
/
EnvironmentShutdownHook.java
blob
3d89407df4b44a1943f7a0eaf185487bfeb43314
1
package
protoas
;
2
3
class
EnvironmentShutdownHook
extends
Thread
{
4
5
protected
Environment env
;
6
7
EnvironmentShutdownHook
(
Environment env
) {
8
this
.
env
=
env
;
9
}
10
11
public void
run
() {
12
System
.
out
.
println
(
env
);
13
}
14
}