Skip to content

Commit

Permalink
TRUNK-2999 Updated since to 1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
rkorytkowski committed Jul 15, 2014
1 parent 93d60c1 commit bbf8d5e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions api/src/main/java/org/openmrs/api/ConceptService.java
Original file line number Diff line number Diff line change
Expand Up @@ -1868,7 +1868,7 @@ public Integer getCountOfConceptReferenceTerms(String query, ConceptSource conce
*
* @param name
* @return true if it is a duplicate name
* @since 1.12
* @since 1.11
*/
public boolean isConceptNameDuplicate(ConceptName name);

Expand All @@ -1878,7 +1878,7 @@ public Integer getCountOfConceptReferenceTerms(String query, ConceptSource conce
* It is an optimization parameter, which can speed up searching.
*
* @return true if search is case sensitive
* @since 1.12
* @since 1.11
*/
public boolean isConceptNameSearchCaseSensitive();

Expand Down
6 changes: 3 additions & 3 deletions api/src/main/java/org/openmrs/api/context/Context.java
Original file line number Diff line number Diff line change
Expand Up @@ -1361,7 +1361,7 @@ public static Properties getConfigProperties() {
* The method is designated to be used in tests, which rollback transactions. Note that if the
* transaction is rolled back, changes to the index will not be reverted.
*
* @since 1.12
* @since 1.11
*/
public static void updateSearchIndex() {
getContextDAO().updateSearchIndex();
Expand All @@ -1372,7 +1372,7 @@ public static void updateSearchIndex() {
*
* @see #updateSearchIndex()
* @param type
* @since 1.12
* @since 1.11
*/
public static void updateSearchIndexForType(Class<?> type) {
getContextDAO().updateSearchIndexForType(type);
Expand All @@ -1383,7 +1383,7 @@ public static void updateSearchIndexForType(Class<?> type) {
*
* @see #updateSearchIndex()
* @param object
* @since 1.12
* @since 1.11
*/
public static void updateSearchIndexForObject(Object object) {
getContextDAO().updateSearchIndexForObject(object);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Performs criteria queries.
*
* @since 1.12
* @since 1.11
*/
public abstract class CriteriaQuery<T> extends SearchQuery<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
/**
* Performs Lucene queries.
*
* @since 1.12
* @since 1.11
*/
public abstract class LuceneQuery<T> extends SearchQuery<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
/**
* Wraps around a query to provide common result methods.
*
* @since 1.12
* @since 1.11
*/
public abstract class SearchQuery<T> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* It is a wrapper for a partial collection, which stores additional info about the current part and
* the whole.
*
* @since 1.12
* @since 1.11
*/
public abstract class CollectionPart<E> {

Expand Down
2 changes: 1 addition & 1 deletion api/src/main/java/org/openmrs/collection/ListPart.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* It is a wrapper for a partial list, which stores additional info about the current part and the
* whole.
*
* @since 1.12
* @since 1.11
*/
public class ListPart<E> extends CollectionPart<E> {

Expand Down

0 comments on commit bbf8d5e

Please sign in to comment.