diff --git a/src/Deprecations.jl b/src/Deprecations.jl index e842888d5b..0845d23c39 100644 --- a/src/Deprecations.jl +++ b/src/Deprecations.jl @@ -115,6 +115,9 @@ @deprecate any_root(f::Hecke.AbstractAlgebra.Generic.Poly, F::Hecke.RelFinField) any_root(F, f) +# Deprecated during 0.22.* + +@deprecate field_of_fractions(O::GenOrd) function_field(O::GenOrd) # Things that moved to Nemo diff --git a/src/FunField/Divisor.jl b/src/FunField/Divisor.jl index ff44c5d7b3..84cdd633db 100644 --- a/src/FunField/Divisor.jl +++ b/src/FunField/Divisor.jl @@ -171,15 +171,10 @@ function ideals(D) end @doc raw""" - field_of_fractions(O::GenOrd) -> FunctionField function_field(O::GenOrd) -> FunctionField Return the function field of O. """ -function field_of_fractions(O::GenOrd) - return O.F -end - function function_field(O::GenOrd) return O.F end