Skip to content

Commit 93ac84b

Browse files
committed
Fixup diff
1 parent 97e3250 commit 93ac84b

1 file changed

Lines changed: 0 additions & 20 deletions

File tree

src/main/java/com/laytonsmith/core/ObjectGenerator.java

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ public static ObjectGenerator GetGenerator() {
133133
* Gets a Location Object, given a MCLocation
134134
*
135135
* @param l
136-
* @param env
137136
* @return
138137
*/
139138
public CArray location(MCLocation l) {
@@ -145,7 +144,6 @@ public CArray location(MCLocation l) {
145144
*
146145
* @param l
147146
* @param includeYawAndPitch
148-
* @param env
149147
* @return
150148
*/
151149
public CArray location(MCLocation l, boolean includeYawAndPitch) {
@@ -1899,7 +1897,6 @@ public MCItemMeta itemMeta(Mixed c, MCMaterial mat, Target t, Environment env) t
18991897
if(ma.containsKey("items")) {
19001898
Mixed value = ma.get("items", t, env);
19011899
if(value instanceof CArray cArray) {
1902-
MCBundleMeta bm = mCBundleMeta;
19031900
CArray items = cArray;
19041901
for(String key : items.stringKeySet()) {
19051902
Mixed entry = items.get(key, t, env);
@@ -1968,7 +1965,6 @@ public AbstractCREException exception(CArray exception, Target t, Environment en
19681965
*
19691966
* @param color
19701967
* @param t
1971-
* @param env
19721968
* @return
19731969
*/
19741970
public CArray color(MCColor color, Target t) {
@@ -2056,7 +2052,6 @@ public MCColor color(CArray color, Target t, Environment env) {
20562052
* Gets a vector object, given a Vector.
20572053
*
20582054
* @param vector the Vector
2059-
* @param env
20602055
* @return the vector array
20612056
*/
20622057
public CArray vector(Vector3D vector) {
@@ -2068,7 +2063,6 @@ public CArray vector(Vector3D vector) {
20682063
*
20692064
* @param vector the Vector
20702065
* @param t the Target
2071-
* @param env
20722066
* @return the vector array
20732067
*/
20742068
public CArray vector(Vector3D vector, Target t) {
@@ -2099,7 +2093,6 @@ public CArray vector(Vector3D vector, Target t) {
20992093
*
21002094
* @param c the vector array
21012095
* @param t the target
2102-
* @param env
21032096
* @return the Vector
21042097
* @deprecated Use {@link #vector(Mixed, Target, Environment)} instead.
21052098
*/
@@ -2223,18 +2216,6 @@ public CArray enchants(Map<MCEnchantment, Integer> map, Target t) {
22232216
return ret;
22242217
}
22252218

2226-
/**
2227-
* @param enchantArray
2228-
* @param t
2229-
* @return
2230-
* @deprecated Use {@link #itemMeta(Mixed, MCMaterial, Target, Environment)} instead.
2231-
*/
2232-
@AggressiveDeprecation(deprecationDate = "2022-04-06", removalVersion = "3.3.7", deprecationVersion = "3.3.6")
2233-
@Deprecated
2234-
public MCItemMeta itemMeta(Mixed c, MCMaterial mat, Target t) throws ConfigRuntimeException {
2235-
return itemMeta(c, mat, t, null);
2236-
}
2237-
22382219
@AggressiveDeprecation(deprecationDate = "2022-04-06", removalVersion = "3.3.7", deprecationVersion = "3.3.6")
22392220
@Deprecated
22402221
public Map<MCEnchantment, Integer> enchants(CArray enchantArray, Target t) {
@@ -3343,7 +3324,6 @@ public Object particleData(MCParticle particleType, MCLocation l, CArray pa, Tar
33433324
*
33443325
* @param value
33453326
* @param plugin
3346-
* @param env
33473327
* @return
33483328
* @deprecated Use {@link #metadataValue(Mixed, MCPlugin, Environment)} instead.
33493329
*/

0 commit comments

Comments
 (0)