Skip to content

Commit 0152353

Browse files
committed
This revision updates the jacoco library files.
The following files were modified, added, or deleted: modified: lib/jacocoant.jar new file: lib/org.jacoco.agent-0.7.10.201707180856.jar deleted: lib/org.jacoco.agent-0.7.7.201606060606.jar new file: lib/org.jacoco.ant-0.7.10.201707180856.jar deleted: lib/org.jacoco.ant-0.7.7.201606060606.jar new file: lib/org.jacoco.core-0.7.10.201707180856.jar deleted: lib/org.jacoco.core-0.7.7.201606060606.jar renamed: lib/org.jacoco.report-0.7.7.201606060606.jar -> lib/org.jacoco.report-0.7.10.201707180856.jar modified: src/edu/rice/cs/drjava/config/Configuration.java modified: src/edu/rice/cs/drjava/model/definitions/indent/Indenter.java modified: src/edu/rice/cs/drjava/model/definitions/indent/QuestionFollowedByStar.java
1 parent 6bff7c5 commit 0152353

12 files changed

+59
-54
lines changed

drjava/lib/jacocoagent.jar

253 KB
Binary file not shown.

drjava/lib/jacocoant.jar

4 KB
Binary file not shown.
231 KB
Binary file not shown.
-233 KB
Binary file not shown.
31.1 KB
Binary file not shown.
-38 KB
Binary file not shown.
143 KB
Binary file not shown.
-135 KB
Binary file not shown.
138 KB
Binary file not shown.

drjava/src/edu/rice/cs/drjava/config/Configuration.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -75,24 +75,24 @@ public <T> T setSetting(final Option<T> op, final T value) {
7575
}
7676

7777
/** Gets the current value of the given Option.
78-
* @param <T> type of the option
79-
* @param op option to get
80-
* @return the value for the option
81-
*/
78+
* @param <T> type of the option
79+
* @param op option to get
80+
* @return the value for the option
81+
*/
8282
public <T> T getSetting(Option<T> op) { return map.getOption(op); }
8383

8484
/** By default, all options are editable.
85-
* @param <T> type of the option
86-
* @param op option to check editability of
87-
* @return true if op is editable, false otherwise
88-
*/
85+
* @param <T> type of the option
86+
* @param op option to check editability of
87+
* @return true if op is editable, false otherwise
88+
*/
8989
public <T> boolean isEditable(Option<T> op) { return true; }
9090

9191
/** Adds an OptionListener to the given Option, to be notified each time the option changes.
92-
* @param <T> type of the option
93-
* @param op Option to listen for changes on
94-
* @param l OptionListener wishing to listen
95-
*/
92+
* @param <T> type of the option
93+
* @param op Option to listen for changes on
94+
* @param l OptionListener wishing to listen
95+
*/
9696
public <T> void addOptionListener(Option<T> op, OptionListener<T> l) { op.addListener(this,l); }
9797

9898
/** Removes an OptionListener from an Option to which it was listening.

0 commit comments

Comments
 (0)