"ssh:/git@developer.sourcefind.cn:2222/tsoc/openmm.git" did not exist on "105b196eace6aa1ff12cf1d17107d3f12f8baa0a"
Commit e3f35378 authored by peastman's avatar peastman
Browse files

Fixed incorrect method signature

parent 0620a02f
...@@ -123,7 +123,7 @@ public: ...@@ -123,7 +123,7 @@ public:
* Set the maximum step size the integrator will ever use, in ps. If this * Set the maximum step size the integrator will ever use, in ps. If this
* is 0 (the default), no limit will be applied to step sizes. * is 0 (the default), no limit will be applied to step sizes.
*/ */
double setMaximumStepSize(double size) { void setMaximumStepSize(double size) {
maxStepSize = size; maxStepSize = size;
} }
/** /**
......
...@@ -93,7 +93,7 @@ public: ...@@ -93,7 +93,7 @@ public:
* Set the maximum step size the integrator will ever use, in ps. If this * Set the maximum step size the integrator will ever use, in ps. If this
* is 0 (the default), no limit will be applied to step sizes. * is 0 (the default), no limit will be applied to step sizes.
*/ */
double setMaximumStepSize(double size) { void setMaximumStepSize(double size) {
maxStepSize = size; maxStepSize = size;
} }
/** /**
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment