|
From: <cro...@li...> - 2005-12-05 19:13:52
|
Module Name: CFJavaEditor
Committed By: akirschbaum
Date: Mon Dec 5 19:13:46 UTC 2005
Modified Files:
CFJavaEditor/src/cfeditor: CResourceLoader.java
Log Message:
Declare constants as 'static' to remove compiler warnings.
Start of context diffs
Index: CFJavaEditor/src/cfeditor/CResourceLoader.java
diff -c CFJavaEditor/src/cfeditor/CResourceLoader.java:1.2 CFJavaEditor/src/cfeditor/CResourceLoader.java:1.3
*** CFJavaEditor/src/cfeditor/CResourceLoader.java:1.2 Sun Sep 11 14:44:58 2005
--- CFJavaEditor/src/cfeditor/CResourceLoader.java Mon Dec 5 11:13:46 2005
***************
*** 37,55 ****
/**
* The current working directory location
*/
! public final int LOCATION_CURRENT = 1;
/**
* The user's home directory location
*/
! public final int LOCATION_HOME = 2;
/**
* The JAR ressources
*/
! public final int LOCATION_JAR = 3;
/**
* The Unknown
*/
! public final int LOCATION_UNKNOWN = 0;
private int type;
private URL url;
--- 37,55 ----
/**
* The current working directory location
*/
! public static final int LOCATION_CURRENT = 1;
/**
* The user's home directory location
*/
! public static final int LOCATION_HOME = 2;
/**
* The JAR ressources
*/
! public static final int LOCATION_JAR = 3;
/**
* The Unknown
*/
! public static final int LOCATION_UNKNOWN = 0;
private int type;
private URL url;
|