Skip to content

Commit

Permalink
remove action content from javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
evanchooly committed Jun 19, 2024
1 parent c0f4097 commit b1b98d8
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ public class TestCenterSphere extends FilterTest {

/**
* test data: dev/morphia/test/query/filters/centerSphere/example1
*
* db.places.find( { loc: { $geoWithin: { $centerSphere: [ [ -88, 30 ],
* 10/3963.2 ] } } } )
*/
@Test(testName = "main")
public void testExample1() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,6 @@ public void testExample1() {

/**
* test data: dev/morphia/test/query/filters/geoIntersects/example2
*
* db.places.find( { loc: { $geoIntersects: { $geometry: { type : "Polygon",
* coordinates: [ [ [ -100, 60 ], [ -100, 0 ], [ -100, -60 ], [ 100, -60 ], [
* 100, 60 ], [ -100, 60 ] ] ], crs: { type: "name", properties: { name:
* "urn:x-mongodb:crs:strictwinding:EPSG:4326" } } } } } } )
*/
@Test(testName = "Intersects a \"Big\" Polygon")
public void testExample2() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ public class TestMinDistance extends FilterTest {

/**
* test data: dev/morphia/test/query/filters/minDistance/example1
*
* db.places.find( { location: { $near : { $geometry: { type: "Point",
* coordinates: [ -73.9667, 40.78 ] }, $minDistance: 1000, $maxDistance: 5000 }
* } } )
*/
@Test(testName = "Use with ``$near``")
public void testExample1() {
Expand All @@ -18,10 +14,6 @@ public void testExample1() {

/**
* test data: dev/morphia/test/query/filters/minDistance/example2
*
* db.places.find( { location: { $nearSphere: { $geometry: { type : "Point",
* coordinates : [ -73.9667, 40.78 ] }, $minDistance: 1000, $maxDistance: 5000 }
* } } )
*/
@Test(testName = "Use with ``$nearSphere``")
public void testExample2() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ public void testExample1() {

/**
* test data: dev/morphia/test/query/filters/nin/example2
*
* db.inventory.updateMany( { tags: { $nin: [ "school" ] } }, { $set: { exclude:
* true } } )
*/
@Test(testName = "Select on Elements Not in an Array")
public void testExample2() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ public void testExample1() {

/**
* test data: dev/morphia/test/query/filters/type/example2
*
* db.grades.find( { classAverage : { $type : [ 2 , 1 ] } } ); db.grades.find( {
* classAverage : { $type : [ "string" , "double" ] } } );
*/
@Test(testName = "Querying by Multiple Data Types")
public void testExample2() {
Expand All @@ -29,8 +26,6 @@ public void testExample2() {

/**
* test data: dev/morphia/test/query/filters/type/example3
*
* db.restaurants.find( { "grades.grade" : { $type : "minKey" } } )
*/
@Test(testName = "Querying by MinKey and MaxKey")
public void testExample3() {
Expand Down

0 comments on commit b1b98d8

Please sign in to comment.