Skip to content

Commit 6efe10b

Browse files
committed
spelling: successfully
Signed-off-by: Josh Soref <[email protected]>
1 parent 46831e4 commit 6efe10b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

visualvm/libs.profiler/lib.profiler.common/src/org/graalvm/visualvm/lib/common/Profiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static synchronized Profiler getDefault() {
122122
if (defaultProfiler == null) {
123123
throw new InternalError("Should never happen"); // NOI18N
124124
} else if (DEBUG) {
125-
System.err.println("Default Profiler succesfully installed: " + defaultProfiler); // NOI18N
125+
System.err.println("Default Profiler successfully installed: " + defaultProfiler); // NOI18N
126126
}
127127
}
128128
return defaultProfiler;

visualvm/libs.profiler/lib.profiler/src/org/graalvm/visualvm/lib/jfluid/server/ProfilerServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ static ResourceBundle getProfilerServerResourceBundle() {
789789
// cannot find jfluid-server.jar or Bundle.properties not found
790790

791791
if (messages != null) {
792-
return messages; // ResourceBundle successfuly loaded using custom classloader
792+
return messages; // ResourceBundle successfully loaded using custom classloader
793793
}
794794

795795
// 2. try to get the ResourceBundle in standard way

visualvm/libs.profiler/profiler.api/src/org/graalvm/visualvm/lib/profiler/spi/LoadGenPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public static enum Result {//~ Enumeration constant initializers ---------------
123123
void start(String scriptPath, Callback callback);
124124

125125
/**
126-
* Stops the last successfuly started load generator process
126+
* Stops the last successfully started load generator process
127127
*/
128128
void stop();
129129

visualvm/libs.profiler/profiler/src/org/graalvm/visualvm/lib/profiler/NetBeansProfiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ public boolean cleanForProfilingOnPort(int port) {
878878

879879
// agent file exists, agent is still shutting down or in undefined state (hanging?)
880880
if (agentFile.exists()) {
881-
// returns true if agent file successfuly deleted, false otherwise (will cause server startup failure because initial STATE_INACTIVE)
881+
// returns true if agent file successfully deleted, false otherwise (will cause server startup failure because initial STATE_INACTIVE)
882882
boolean fileDeleted = waitForDeleteAgentFile(agentFile);
883883

884884
if (!fileDeleted) {

visualvm/libs.profiler/profiler/src/org/graalvm/visualvm/lib/profiler/actions/HeapDumpAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"HeapDumpAction_WrongDestinationMsg=Dumping heap failed, cannot resolve destination file.",
9696
"HeapDumpAction_DumpingHeapText=Dumping heap...",
9797
"HeapDumpAction_SavedDialogCaption=Heap Dump Saved",
98-
"HeapDumpAction_SavedDialogText=<html><b>The heap has been successfuly saved to a file.</b><br>Do you want to open it in HeapWalker?</html>",
98+
"HeapDumpAction_SavedDialogText=<html><b>The heap has been successfully saved to a file.</b><br>Do you want to open it in HeapWalker?</html>",
9999
"HeapDumpAction_DumpingFailedMsg=Taking heap dump failed. See NetBeans logfile for details.",
100100
"HeapDumpAction_DestinationDialogCaption=Choose Heap Dump Destination",
101101
"HeapDumpAction_LocationProjectString=Profiled project",

0 commit comments

Comments
 (0)