public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
* [SCM]  master: swagiaal: Fixed type in ObjectDeclarationNotFoundException.java.
@ 2008-03-13 18:53 swagiaal
  0 siblings, 0 replies; only message in thread
From: swagiaal @ 2008-03-13 18:53 UTC (permalink / raw)
  To: frysk-cvs

The branch, master has been updated
       via  fbd23dae64a0c33303d87610bb0c012e365b57cf (commit)
       via  b7a6db4af93d8d5b6317d43eeeaaa99e087624f7 (commit)
      from  ece95178765b748a10a2d03d51415f49d72cbddb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit fbd23dae64a0c33303d87610bb0c012e365b57cf
Author: Sami Wagiaalla <swagiaal@redhat.com>
Date:   Thu Mar 13 14:49:58 2008 -0400

    swagiaal: Fixed type in ObjectDeclarationNotFoundException.java.
    
    frysk-core/frysk/debuginfo/ChangeLog
    +2008-03-13  Sami Wagiaalla  <swagiaal@redhat.com>
    +
    +	* ObjectDeclarationNotFoundException.java: Renamed.
    +	* TestObjectDeclarationSearchEngine.java: Updated.
    +	* ObjectDeclarationSearchEngine.java: Updated.
    +

commit b7a6db4af93d8d5b6317d43eeeaaa99e087624f7
Author: Sami Wagiaalla <swagiaal@redhat.com>
Date:   Thu Mar 13 12:03:18 2008 -0400

    swagiaal: fixed typo.
    
    frysk-core/frysk/debuginfo/ChangeLog
    +2008-03-13  Sami Wagiaalla  <swagiaal@redhat.com>
    +
    +	* ObjectDeclarationSearchEngine.java: Fixed typo.
    +

-----------------------------------------------------------------------

Summary of changes:
 frysk-core/frysk/debuginfo/ChangeLog               |   10 ++++++++++
 ...ava => ObjectDeclarationNotFoundException.java} |    4 ++--
 .../debuginfo/ObjectDeclarationSearchEngine.java   |    4 ++--
 .../TestObjectDeclarationSearchEngine.java         |    2 +-
 4 files changed, 15 insertions(+), 5 deletions(-)
 rename frysk-core/frysk/debuginfo/{ObjectDeclaratioinNotFoundException.java => ObjectDeclarationNotFoundException.java} (94%)

First 500 lines of diff:
diff --git a/frysk-core/frysk/debuginfo/ChangeLog b/frysk-core/frysk/debuginfo/ChangeLog
index 1d3f91a..76b9ebe 100644
--- a/frysk-core/frysk/debuginfo/ChangeLog
+++ b/frysk-core/frysk/debuginfo/ChangeLog
@@ -1,3 +1,13 @@
+2008-03-13  Sami Wagiaalla  <swagiaal@redhat.com> 
+
+	* ObjectDeclarationNotFoundException.java: Renamed.
+	* TestObjectDeclarationSearchEngine.java: Updated.
+	* ObjectDeclarationSearchEngine.java: Updated.
+
+2008-03-13  Sami Wagiaalla  <swagiaal@redhat.com>
+
+	* ObjectDeclarationSearchEngine.java: Fixed typo.
+
 2008-03-11  Andrew Cagney  <cagney@redhat.com>
 
 	* CompilerVersionFactory.java: Use LogFactory.
diff --git a/frysk-core/frysk/debuginfo/ObjectDeclaratioinNotFoundException.java b/frysk-core/frysk/debuginfo/ObjectDeclarationNotFoundException.java
similarity index 94%
rename from frysk-core/frysk/debuginfo/ObjectDeclaratioinNotFoundException.java
rename to frysk-core/frysk/debuginfo/ObjectDeclarationNotFoundException.java
index 29df295..6aee2a0 100644
--- a/frysk-core/frysk/debuginfo/ObjectDeclaratioinNotFoundException.java
+++ b/frysk-core/frysk/debuginfo/ObjectDeclarationNotFoundException.java
@@ -39,9 +39,9 @@
 
 package frysk.debuginfo;
 
-public class ObjectDeclaratioinNotFoundException extends RuntimeException {
+public class ObjectDeclarationNotFoundException extends RuntimeException {
 
-    public ObjectDeclaratioinNotFoundException(String name) {
+    public ObjectDeclarationNotFoundException(String name) {
 	super("Object "+ name + " was not found");
     }
 
diff --git a/frysk-core/frysk/debuginfo/ObjectDeclarationSearchEngine.java b/frysk-core/frysk/debuginfo/ObjectDeclarationSearchEngine.java
index 94aee90..5ab57c8 100644
--- a/frysk-core/frysk/debuginfo/ObjectDeclarationSearchEngine.java
+++ b/frysk-core/frysk/debuginfo/ObjectDeclarationSearchEngine.java
@@ -63,7 +63,7 @@ import frysk.value.Variable;
 /**
  * This engine implements the c++ scoping rules and uses when searching for
  * a variable by name:
- * 1. Search the inner-most scope containing the current pc indeicated by the
+ * 1. Search the inner-most scope containing the current pc indicated by the
  * given frame, and return the first encounter. 
  *
  */
@@ -92,7 +92,7 @@ public class ObjectDeclarationSearchEngine implements ExprSymTab{
 	    scope = scope.getOuter();
 	}
 	
-	throw new ObjectDeclaratioinNotFoundException(name);
+	throw new ObjectDeclarationNotFoundException(name);
     }
 
     public Type getType(Variable variable) {
diff --git a/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngine.java b/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngine.java
index 04143f1..cfcc4e7 100644
--- a/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngine.java
+++ b/frysk-core/frysk/debuginfo/TestObjectDeclarationSearchEngine.java
@@ -176,7 +176,7 @@ public class TestObjectDeclarationSearchEngine extends TestLib{
 	try {
 	    objectDeclaration = (Variable) objectDeclarationSearchEngine.getVariable("NOT"+variableName);
 	    assertTrue("Exception was not thrown", false);
-	} catch (ObjectDeclaratioinNotFoundException e) {
+	} catch (ObjectDeclarationNotFoundException e) {
 	    // exception was thrown
 	}
 	


hooks/post-receive
--
frysk system monitor/debugger


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-13 18:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-13 18:53 [SCM] master: swagiaal: Fixed type in ObjectDeclarationNotFoundException.java swagiaal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).