Deprecate deprecated in favor of Deprecated
This commit is contained in:
+4
-4
@@ -1,17 +1,17 @@
|
||||
package pack
|
||||
|
||||
@deprecated("", ReplaceWith("bar(p + 1)"))
|
||||
@Deprecated("", ReplaceWith("bar(p + 1)"))
|
||||
public fun oldFun1(p: Int): Int = 0
|
||||
|
||||
@deprecated("", ReplaceWith("bar(-1)"))
|
||||
@Deprecated("", ReplaceWith("bar(-1)"))
|
||||
public fun oldFun1(): Int = 0
|
||||
|
||||
@deprecated("", ReplaceWith("bar(p + 2)"))
|
||||
@Deprecated("", ReplaceWith("bar(p + 2)"))
|
||||
public fun oldFun2(p: Int): Int = 0
|
||||
|
||||
public fun oldFun2(): Int = 0
|
||||
|
||||
@deprecated("", ReplaceWith("bar(p)"))
|
||||
@Deprecated("", ReplaceWith("bar(p)"))
|
||||
public fun oldFun3(p: Int): Int = 0
|
||||
|
||||
public fun bar(p: Int): Int = p
|
||||
Reference in New Issue
Block a user