Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion java/build/org/apache/derbyBuild/GeneratorBase.java
Original file line number Diff line number Diff line change
Expand Up @@ -786,7 +786,7 @@ public static void replaceTag(Document doc, String tag,
/**
* Format an error for later reporting.
* @param text description
* @param t execption that occured
* @param t exception that occurred
* @return formatted error with stack trace
*/
public static String formatError(String text, Throwable t) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public interface FileResource {
@return the generationId for the file resource. This
quantity increases when you replace the file resource.

@exception StandardException some error occured.
@exception StandardException some error occurred.
*/
public long add(String name,InputStream source)
throws StandardException;
Expand All @@ -82,7 +82,7 @@ public long add(String name,InputStream source)

@param name the name of the fileResource to remove.

@exception StandardException some error occured.
@exception StandardException some error occurred.
*/
public void remove(String name, long currentGenerationId)
throws StandardException;
Expand All @@ -105,7 +105,7 @@ public void remove(String name, long currentGenerationId)
the file resource.
@return the generationId for the new 'current' version of the
file resource.
@exception StandardException some error occured.
@exception StandardException some error occurred.
*/
public long replace(String name, long currentGenerationId, InputStream source)
throws StandardException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ int unlock(int unlockCount) {
count -= unlockCount;
if (count == 0) {

// Inform the object an unlock event occured with this qualifier
// Inform the object an unlock event occurred with this qualifier

ref.unlockEvent(this);
}
Expand Down