Skip to content

Commit

Permalink
More docs
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Feb 6, 2024
1 parent 6e405e5 commit e112464
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ public EVESSyntax getVESSyntax ()
}

/**
* The potentially mutable part of a loaded VES.
* The potentially mutable part of a loaded VES. This is the syntax
* independent version of the status, in case there will be more then one
* version.
*
* @author Philip Helger
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,15 @@
@ThreadSafe
public final class VESLoader
{
/**
* File extension for VES files
*/
public static final String FILE_EXT_VES = ".ves";
/**
* File extension for status files
*/
public static final String FILE_EXT_STATUS = ".status";

public static final boolean DEFAULT_USE_EAGER_REQUIREMENT_LOADING = false;

private static final Logger LOGGER = LoggerFactory.getLogger (VESLoader.class);
Expand Down Expand Up @@ -490,6 +497,7 @@ public LoadedVES loadVESFromRepo (@Nonnull final VESID aVESID,
// Ensure the VESID is not yet in the loader chain
if (aLoaderStatus.addVESID (aVESID).isFailure ())
{
// This is a circular dependency
aErrorList.add (SingleError.builderError ()
.errorText ("The VESID '" +
aVESID.getAsSingleID () +
Expand Down

0 comments on commit e112464

Please sign in to comment.