8301443: Clean broken comments from Windows code

Reviewed-by: aivanov
This commit is contained in:
Julian Waters 2023-02-09 03:19:42 +00:00
parent 5561c397c5
commit 70f3150166
12 changed files with 26 additions and 25 deletions

View File

@ -211,4 +211,4 @@ private:
IManagedResource* pHead;
};
#endif _D3DRESOURCEMANAGER_H_
#endif // _D3DRESOURCEMANAGER_H_

View File

@ -259,8 +259,8 @@ HRESULT D3DVertexCacher::DrawLine(int x1, int y1, int x2, int y2)
} else {
// diagonal
if (x1 > x2 && y1 > y2) {
// ^
// \ case -> inverse
/* ^
\ case -> inverse */
fx1 = (float)x2;
fy1 = (float)y2;
fx2 = (float)x1;
@ -273,8 +273,8 @@ HRESULT D3DVertexCacher::DrawLine(int x1, int y1, int x2, int y2)
fx2 = (float)x1;
fy2 = (float)y1;
} else {
// \ ^
// v or / - leave as is
/* \ ^
v or / - leave as is */
fx1 = (float)x1;
fy1 = (float)y1;
fx2 = (float)x2;
@ -282,8 +282,8 @@ HRESULT D3DVertexCacher::DrawLine(int x1, int y1, int x2, int y2)
}
if (fx2 > fx1 && fy2 > fy1) {
// \
// v
/* \
v */
fx1 += DD_FX1;
fy1 += DD_FY1;
fx2 += DD_FX2;

View File

@ -256,4 +256,4 @@ GDIWindowSurfaceData_GetComp(JNIEnv *env, GDIWinSDOps *wsdo);
} /* extern "C" */
#endif _WIN32SURFACEDATA_H_
#endif // _WIN32SURFACEDATA_H_

View File

@ -37,4 +37,4 @@ void SetD3DEnabledFlag(JNIEnv *env, BOOL d3dEnabled, BOOL d3dSet);
BOOL IsD3DEnabled();
BOOL IsD3DForced();
#endif WINDOWSFLAGS_H
#endif // WINDOWSFLAGS_H

View File

@ -74,4 +74,4 @@ static CriticalSection arrayLock;
BOOL WINAPI MonitorBounds (HMONITOR, RECT*);
#endif _DEVICES_H_
#endif // _DEVICES_H_

View File

@ -271,4 +271,4 @@ PALETTEENTRY AwtPalette::customPalette[] = {
{ 0xf8, 0xf8, 0xf8, PC_NOCOLLAPSE },
};
#endif _AWT_CUSTOMPALETTEDEF_H
#endif // _AWT_CUSTOMPALETTEDEF_H

View File

@ -101,4 +101,4 @@ private:
#endif AWT_PALETTE_H
#endif // AWT_PALETTE_H

View File

@ -266,7 +266,7 @@ extern "C" BOOL APIENTRY DllMain(HANDLE hInstance, DWORD ul_reason_for_call,
#ifdef DEBUG
DTrace_DisableMutex();
DMem_DisableMutex();
#endif DEBUG
#endif // DEBUG
break;
}
return TRUE;
@ -628,7 +628,7 @@ BOOL AwtToolkit::Initialize(BOOL localPump) {
// Set up operator new/malloc out of memory handler.
NewHandler::init();
//\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//*************************************************************************
// Bugs 4032109, 4047966, and 4071991 to fix AWT
// crash in 16 color display mode. 16 color mode is supported. Less
// than 16 color is not.

View File

@ -129,4 +129,4 @@ private:
static int ClipRound(double value);
};
#endif AWT_WIN32GRAPHICSDEVICE_H
#endif // AWT_WIN32GRAPHICSDEVICE_H

View File

@ -23,12 +23,14 @@
* questions.
*/
// This library is client-side only, and only supports the default credentials.
// It speaks krb5 and SPNEGO. NTLM is excluded from SPNEGO negotiation.
//
// This library can be built directly with the following command:
// cl -I %OPENJDK%\src\java.security.jgss\share\native\libj2gss\ sspi.cpp \
// -link -dll -out:sspi_bridge.dll
/*
* This library is client-side only, and only supports the default credentials.
* It speaks krb5 and SPNEGO. NTLM is excluded from SPNEGO negotiation.
*
* This library can be built directly with the following command:
* cl -I %OPENJDK%\src\java.security.jgss\share\native\libj2gss\ sspi.cpp \
* -link -dll -out:sspi_bridge.dll
*/
#define UNICODE
#define _UNICODE

View File

@ -628,9 +628,8 @@ extern "C" {
AccessibleContext getActiveDescendent (const long vmID, const AccessibleContext accessibleContext);
/**
/**
* Accessible Value routines
*/
* Accessible Value routines
*/
BOOL GetCurrentAccessibleValueFromContext(long vmID, AccessibleValue av, wchar_t *value, short len);
BOOL GetMaximumAccessibleValueFromContext(long vmID, AccessibleValue av, wchar_t *value, short len);
BOOL GetMinimumAccessibleValueFromContext(long vmID, AccessibleValue av, wchar_t *value, short len);

View File

@ -668,7 +668,7 @@ void HandlePropertyActiveDescendentChange( long vmID, PropertyChangeEvent event,
(int)(sizeof(buffer) - strlen(buffer)) );
strncat(buffer, "\r\n\r\n", sizeof(buffer));
}
#endif _notdef
#endif // _notdef
if (newActiveDescendent != (AccessibleContext) 0) {
displayAccessiblePropertyChange(vmID, newActiveDescendent, buffer);