Browse Source

add some final keyword to immutable things

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@687834 13f79535-47bb-0310-9956-ffa450edef68
master
Scokart Gilles 17 years ago
parent
commit
053240d928
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/main/org/apache/tools/ant/BuildEvent.java

+ 3
- 3
src/main/org/apache/tools/ant/BuildEvent.java View File

@@ -32,11 +32,11 @@ public class BuildEvent extends EventObject {
private static final long serialVersionUID = 4538050075952288486L;

/** Project which emitted the event. */
private Project project;
private final Project project;
/** Target which emitted the event, if specified. */
private Target target;
private final Target target;
/** Task which emitted the event, if specified. */
private Task task;
private final Task task;
/**
* Message associated with the event. This is only used for
* "messageLogged" events.


Loading…
Cancel
Save