spelling: necessary

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2024-10-22 09:45:16 -04:00
committed by Jindra Petřík
parent 6d08d9b9c1
commit f720611b83
9 changed files with 11 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ public class PreDecrementAVM2Item extends UnaryOpItem implements AssignmentAVM2I
* @param object Object
*/
public PreDecrementAVM2Item(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) {
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/);
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/);
}
@Override

View File

@@ -40,7 +40,7 @@ public class PreIncrementAVM2Item extends UnaryOpItem {
* @param object Object
*/
public PreIncrementAVM2Item(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) {
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/);
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/);
}
@Override

View File

@@ -52,7 +52,7 @@ public class PreDecrementActionItem extends UnaryOpItem {
* @param object Object
*/
public PreDecrementActionItem(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) {
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/);
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "--", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/);
}
@Override

View File

@@ -53,7 +53,7 @@ public class PreIncrementActionItem extends UnaryOpItem {
* @param object Object
*/
public PreIncrementActionItem(GraphSourceItem instruction, GraphSourceItem lineStartIns, GraphTargetItem object) {
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unneccessary ++Number(xx) when xx not number*/);
super(instruction, lineStartIns, PRECEDENCE_UNARY, object, "++", "" /*"Number" Causes unnecessary ++Number(xx) when xx not number*/);
}
@Override

View File

@@ -49,7 +49,7 @@ public class DictionaryType extends ListMap<Object, Object> implements WithSubVa
*/
public DictionaryType(boolean weakKeys, Map<Object, Object> entries) {
super(true /*IdentityMap*/, entries);
this.weakKeys = weakKeys; //TODO? Really make the Map weak - something like WeakIdentityMap - but is it neccessary for serialization?
this.weakKeys = weakKeys; //TODO? Really make the Map weak - something like WeakIdentityMap - but is it necessary for serialization?
}
@Override