mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 10:40:50 +00:00
Reformating to fix checkstyle.
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
/*
|
||||
* Copyright (C) 2010-2024 JPEXS, All rights reserved.
|
||||
*
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 3.0 of the License, or (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library.
|
||||
*/
|
||||
@@ -22,6 +22,7 @@ import java.util.Set;
|
||||
|
||||
/**
|
||||
* An item that cannot be statically computed.
|
||||
*
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class NotCompileTimeItem extends GraphTargetItem {
|
||||
@@ -33,6 +34,7 @@ public class NotCompileTimeItem extends GraphTargetItem {
|
||||
|
||||
/**
|
||||
* Constructs a new NotCompileTimeItem.
|
||||
*
|
||||
* @param instruction Instruction
|
||||
* @param lineStartIns Line start instruction
|
||||
* @param object Object that cannot be statically computed
|
||||
@@ -44,6 +46,7 @@ public class NotCompileTimeItem extends GraphTargetItem {
|
||||
|
||||
/**
|
||||
* Whether this item can be computed statically.
|
||||
*
|
||||
* @param dependencies Dependencies
|
||||
* @return Whether this item can be computed statically
|
||||
*/
|
||||
@@ -52,9 +55,9 @@ public class NotCompileTimeItem extends GraphTargetItem {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Gets through the object that cannot be statically computed.
|
||||
*
|
||||
* @return Through the object that cannot be statically computed
|
||||
*/
|
||||
@Override
|
||||
@@ -67,6 +70,7 @@ public class NotCompileTimeItem extends GraphTargetItem {
|
||||
|
||||
/**
|
||||
* Appends this item to the writer.
|
||||
*
|
||||
* @param writer Writer
|
||||
* @param localData Local data
|
||||
* @return Writer
|
||||
@@ -79,6 +83,7 @@ public class NotCompileTimeItem extends GraphTargetItem {
|
||||
|
||||
/**
|
||||
* Whether this item has a return value.
|
||||
*
|
||||
* @return Whether this item has a return value
|
||||
*/
|
||||
@Override
|
||||
@@ -88,6 +93,7 @@ public class NotCompileTimeItem extends GraphTargetItem {
|
||||
|
||||
/**
|
||||
* Gets the return type of this item.
|
||||
*
|
||||
* @return Return type of this item
|
||||
*/
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user