Skip to content

Commit

Permalink
Merge pull request #20920 from keithc-ca/dangling-doc-comments
Browse files Browse the repository at this point in the history
Fix dangling-doc-comments warnings
  • Loading branch information
pshipton authored Jan 13, 2025
2 parents 8a2ed5a + 8b210bc commit b7d59c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ private static void writerUserData(String beginTag, String endTag, List<String>
}

private void writeGeneratedWarning(PrintWriter writer) {
writer.println("/**");
writer.println("/*");
writer.println(" * WARNING!!! GENERATED FILE");
writer.println(" *");
writer.println(" * This class is generated.");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*[INCLUDE-IF Sidecar18-SE]*/
/*[INCLUDE-IF JAVA_SPEC_VERSION >= 8]*/
/*
* Copyright IBM Corp. and others 2000
*
Expand All @@ -22,12 +22,12 @@
*/
package com.ibm.jvm.format;

/**
* Trace Tool routine for generating profile format output.
*/
import java.io.*;
import java.util.*;

/**
* Trace Tool routine for generating profile format output.
*/
public class Format2Tprof {
final String Trc_JIT_Component_Name = "j9jit";
final int Trc_JIT_Sampling_Id = 13;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*[INCLUDE-IF Sidecar18-SE]*/
/*[INCLUDE-IF JAVA_SPEC_VERSION >= 8]*/
/*
* Copyright IBM Corp. and others 2000
*
Expand Down Expand Up @@ -71,29 +71,8 @@ public TraceSection (TraceFile traceFile, int start ) throws IOException
Util.Debug.println("TraceSection: type: " + type); // 0=internal 1=external
Util.Debug.println("TraceSection: generations: " + generations);
Util.Debug.println("TraceSection: pointerSize: " + pointerSize);

}

/** summarizes the trace section
*
* @return null
*/
//final protected void summary(BufferedWriter out) throws IOException
//{
// int off = offset;
// String temp = Util.constructString(data, off);
//
// out.write("Internal Trace Data :");
// out.newLine();
// while ( !temp.equals("") ) {
// out.write((Util.SUM_TAB+temp));
// out.newLine();
// off += (temp.length() + 1);
// temp = Util.constructString(data, off);
// }
// out.newLine();
//}

/** returns the type of trace ( INTERNAL or EXTERNAL )
*
* @return an int
Expand Down

0 comments on commit b7d59c7

Please sign in to comment.