Skip to content

Commit

Permalink
Eclipse tries to write to systemClasspath - PR 60582
Browse files Browse the repository at this point in the history
thanks to @ebourg 984a03d
  • Loading branch information
bodewig committed Jan 13, 2017
1 parent 0c38fb6 commit 1348ebb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions WHATSNEW
@@ -1,6 +1,13 @@
Changes from Ant 1.9.8 TO Ant 1.9.9
===================================

Fixed bugs:
-----------

* Ant 1.9.8 made Path#systemClasspath final which broke the Eclipse
integration.
Bugzilla Report 60582

Changes from Ant 1.9.7 TO Ant 1.9.8
===================================

Expand Down
3 changes: 2 additions & 1 deletion src/main/org/apache/tools/ant/types/Path.java
Expand Up @@ -66,8 +66,9 @@
public class Path extends DataType implements Cloneable, ResourceCollection {
// CheckStyle:VisibilityModifier OFF - bc

// non-final as some IDE integrations (at least Eclipse) want to override it
/** The system classpath as a Path object */
public static final Path systemClasspath =
public static Path systemClasspath = //NOSONAR
new Path(null, System.getProperty("java.class.path"));


Expand Down

0 comments on commit 1348ebb

Please sign in to comment.