Skip to content
Snippets Groups Projects
Commit 72e15fff authored by Guylaine Prat's avatar Guylaine Prat
Browse files

Remove useless configuration flag.

parent af0c67ea
No related branches found
No related tags found
No related merge requests found
...@@ -39,12 +39,6 @@ public abstract class AtmosphericRefraction { ...@@ -39,12 +39,6 @@ public abstract class AtmosphericRefraction {
*/ */
private boolean mustBeComputed = true; private boolean mustBeComputed = true;
/** Flag to tell if we must compute the correction (for direct location) with an optimization grid.
* By default: optimization is not set up.
* @since 2.1
*/
private boolean isOptimized = false;
/** The current atmospheric parameters. /** The current atmospheric parameters.
* @since 2.1 * @since 2.1
*/ */
...@@ -119,14 +113,6 @@ public abstract class AtmosphericRefraction { ...@@ -119,14 +113,6 @@ public abstract class AtmosphericRefraction {
return mustBeComputed; return mustBeComputed;
} }
/** Tell if the computation (for direct location) must be optimized.
* @return true if computation must be optimized; false otherwise
* @since 2.1
*/
public boolean isOptimized() {
return isOptimized;
}
/** Configuration of the interpolation grid. This grid is associated to the given sensor, /** Configuration of the interpolation grid. This grid is associated to the given sensor,
* with the given min and max lines. * with the given min and max lines.
* @param sensor line sensor * @param sensor line sensor
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment