Skip to content

Commit

Permalink
prepare for release 4
Browse files Browse the repository at this point in the history
  • Loading branch information
ignazio1977 committed Nov 15, 2014
1 parent be8a02f commit b11c672
Show file tree
Hide file tree
Showing 20 changed files with 22 additions and 21 deletions.
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@
<groupId>edu.stanford.protege</groupId>
<artifactId>org.protege.editor.owl</artifactId>
<version>5.0.0-beta-16-SNAPSHOT</version>
<optional>true</optional>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected int insertionIndex(int key) {
return -lowerbound - 1;
}

/** default constructor */
/** Default constructor. */
public FastSetSimple() {}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Reference<E> implements Serializable {
private static final long serialVersionUID = 11000L;
private E e;

/** default constructor */
/** Default constructor. */
public Reference() {}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/uk/ac/manchester/cs/jfact/helpers/Timer.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Timer implements Serializable {
/** flag to show timer is started */
private boolean started;

/** default constructor */
/** Default constructor. */
public Timer() {
startTime = 0;
resultTime = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private static int getnewId() {
@Original
private final int id;

/** default constructor */
/** Default constructor. */
public CGLabel() {
scLabel = new CWDArray();
ccLabel = new CWDArray();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class MergableLabel implements Serializable {
@PortedFrom(file = "mergableLabel.h", name = "pSample")
private MergableLabel pSample;

/** default constructor */
/** Default constructor. */
public MergableLabel() {
pSample = this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class Ontology implements Serializable {
@PortedFrom(file = "tOntology.h", name = "Splits")
private final TSplitVars Splits = new TSplitVars();

/** default constructor */
/** Default constructor. */
public Ontology() {
axiomId = 0;
changed = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public List<RATransition> begin() {
return base;
}

/** default constructor */
/** Default constructor. */
public RAStateTransitions() {
emptyTransition = false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ private void ensureState(int state) {
}
}

/** default constructor */
/** Default constructor. */
public RoleAutomaton() {
initialRA = 0;
inputSafe = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ public class SaveStackRare implements Serializable {
/** current level */
private int curLevel;

/**
* default constructor
*/
/** Default constructor. */
public SaveStackRare() {
curLevel = InitBranchingLevelValue;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public Set<ClassifiableEntry> synonyms() {
return synonyms;
}

/** default constructor */
/** Default constructor. */
public TaxonomyVertex() {
initFlags();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class NAryExpressionImpl<A extends Expression> implements
/** set of equivalent concept descriptions */
private final List<A> Base = new ArrayList<>();

/** default constructor */
/** Default constructor. */
public NAryExpressionImpl() {}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class QRQuery implements Serializable {
@PortedFrom(file = "QR.h", name = "FreeVars")
private Set<QRVariable> FreeVars = new TreeSet<>();

/** default constructor */
/** Default constructor. */
public QRQuery() {}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class QRSetAtoms implements Serializable {
@PortedFrom(file = "QR.h", name = "Base")
private final List<QRAtom> Base = new ArrayList<>();

/** default constructor */
/** Default constructor. */
public QRSetAtoms() {}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class SaveState implements Serializable {
private int sc;
private int cc;

/** default constructor */
/** Default constructor. */
public SaveState() {
sc = Integer.MAX_VALUE;
cc = Integer.MAX_VALUE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void restoreState(TODOListSaveState tss) {
}

/**
* default constructor
* Default constructor.
*
* @param r
* rare stack
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class TSignature implements Serializable {
@PortedFrom(file = "tSignature.h", name = "topRLocality")
private boolean topRLocality = false;

/** default constructor */
/** Default constructor. */
public TSignature() {}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class TSplitVars implements Serializable {
@PortedFrom(file = "tSplitVars.h", name = "Index")
protected final Map<ConceptName, TSplitVar> Index = new HashMap<>();

/** default constructor */
/** Default constructor. */
public TSplitVars() {}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class DLAxiomVisitorExAdapter<A> implements DLAxiomVisitorEx<A>,
private static final long serialVersionUID = 11000L;
private A defaultValue;

/** default constructor */
/** Default constructor. */
public DLAxiomVisitorExAdapter() {
this(null);
}
Expand Down
4 changes: 3 additions & 1 deletion src/test/java/bugs/debug/Broken.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import static org.junit.Assert.*;
import static org.semanticweb.owlapi.apibinding.OWLFunctionalSyntaxFactory.*;

import org.junit.Ignore;
import org.junit.Test;
import org.semanticweb.owlapi.apibinding.OWLManager;
import org.semanticweb.owlapi.model.IRI;
Expand All @@ -24,11 +25,12 @@
import org.semanticweb.owlapi.reasoner.OWLReasoner;
import org.semanticweb.owlapi.reasoner.OWLReasonerFactory;

import testbase.TestBase;
import conformancetests.Changed;
import conformancetests.JUnitRunner;
import conformancetests.TestClasses;
import testbase.TestBase;

@Ignore("disabling for release")
@SuppressWarnings("javadoc")
public class Broken extends TestBase {

Expand Down

0 comments on commit b11c672

Please sign in to comment.