Skip to content

Commit

Permalink
Make TaskDef's constructor public, and increment SNAP version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
cheeseng committed Jun 25, 2013
1 parent cefc1b3 commit 1d11dcb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -2,7 +2,7 @@ name := "test-interface"

organization := "org.scalatest"

version := "1.0-SNAP4"
version := "1.0-SNAP5"

scalaVersion := "2.10.1"

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/sbt/testing/TaskDef.java
Expand Up @@ -61,7 +61,7 @@ public final class TaskDef {
private boolean _explicitlySpecified;
private Selector[] _selectors;

TaskDef(String fullyQualifiedName, Fingerprint fingerprint, boolean explicitlySpecified, Selector[] selectors) {
public TaskDef(String fullyQualifiedName, Fingerprint fingerprint, boolean explicitlySpecified, Selector[] selectors) {

if (fullyQualifiedName == null) {
throw new NullPointerException("fullyQualifiedName was null");
Expand Down

0 comments on commit 1d11dcb

Please sign in to comment.