Skip to content

Commit

Permalink
Update Environment.java
Browse files Browse the repository at this point in the history
  • Loading branch information
jomifred committed Nov 1, 2024
1 parent 5acb421 commit eb3282b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ public class Environment {

private static Logger logger = Logger.getLogger(Environment.class.getName());

private List<Literal> percepts = Collections.synchronizedList(new ArrayList<Literal>());
private Map<String,List<Literal>> agPercepts = new ConcurrentHashMap<String, List<Literal>>();
protected List<Literal> percepts = Collections.synchronizedList(new ArrayList<Literal>());
protected Map<String,List<Literal>> agPercepts = new ConcurrentHashMap<String, List<Literal>>();

private boolean isRunning = true;
protected boolean isRunning = true;

/** the infrastructure tier for environment (Local, Jade, ...) */
private EnvironmentInfraTier environmentInfraTier = null;
Expand Down

0 comments on commit eb3282b

Please sign in to comment.